We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59f5f04 commit 8630999Copy full SHA for 8630999
README.md
@@ -141,13 +141,19 @@ Please see the [Contribution Guidelines](https://github.com/LetMeR00t/pyCheckpoi
141
142
Once Poetry is installed, you can create and validate your development environment using those commands:
143
144
- $ poetry install
145
- ...
146
- $ poetry build
147
148
- $ poetry shell
149
150
- $ pytest
+```sh
+poetry install
+# this is installing the package using poetry
+
+poetry build
+# this is building the package locally (not required)
151
+poetry shell
152
+# this is usind the dedicated virtual environment for development
153
154
+$ pytest
155
+# Run the tests
156
+```
157
158
You should then see the output of pytest results with all tests passed.
159
0 commit comments