Skip to content

Commit

Permalink
ADD: language to code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
jseop-lim authored and Kirade committed Feb 8, 2024
1 parent 2155103 commit f4c70fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Please read this [installation guide](https://python-poetry.org/docs/) to instal
Then install package dependencies with this command at project root.
This will resolve package dependencies and install it in poetry managed virtual environment.

```
```shell
poetry install
```

Expand Down Expand Up @@ -99,7 +99,7 @@ Make your own named package in src directory.

**NOTE**: package setting in `pyproject.toml` should be changed as you set up your own package.

```
```toml
packages = [
{ include = "{your-python-package-name}", from = "src" },
]
Expand All @@ -111,7 +111,7 @@ Every test code should resides in `tests` package at project root.

To test your source code, simply use 'pytest' or 'tox'.

```
```shell
# Use pytest
$ pytest tests/

Expand Down

0 comments on commit f4c70fc

Please sign in to comment.