File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ Please read this [installation guide](https://python-poetry.org/docs/) to instal
4545Then install package dependencies with this command at project root.
4646This will resolve package dependencies and install it in poetry managed virtual environment.
4747
48- ```
48+ ``` shell
4949poetry install
5050```
5151
@@ -99,7 +99,7 @@ Make your own named package in src directory.
9999
100100** NOTE** : package setting in ` pyproject.toml ` should be changed as you set up your own package.
101101
102- ```
102+ ``` toml
103103packages = [
104104 { include = " {your-python-package-name}" , from = " src" },
105105]
@@ -111,7 +111,7 @@ Every test code should resides in `tests` package at project root.
111111
112112To test your source code, simply use 'pytest' or 'tox'.
113113
114- ```
114+ ``` shell
115115# Use pytest
116116$ pytest tests/
117117
You can’t perform that action at this time.
0 commit comments