@@ -77,7 +77,7 @@ Execute the unit tests of the project:
7777
7878.. code-block :: shell
7979
80- nox -s unit-tests
80+ nox -s test: unit
8181
8282
8383 .. _existing :
@@ -184,17 +184,20 @@ You are ready to use the toolbox. With *nox -l* you can list all available tasks
184184 $ nox -l
185185 Sessions defined in <PATH_TO_YOUR_PROJECT>/noxfile.py:
186186
187- * fix -> Runs all automated fixes on the code base
188- - check -> Runs all available checks on the project
189- - lint -> Runs the linter on the project
190- - type-check -> Runs the type checker on the project
191- - unit-tests -> Runs all unit tests
192- - integration-tests -> Runs the all integration tests
193- - coverage -> Runs all tests (unit + integration) and reports the code coverage
187+ * project:fix -> Runs all automated fixes on the code base
188+ - project:check -> Runs all available checks on the project
189+ - project:report -> Collects and generates metrics summary for the workspace
190+ - test:unit -> Runs all unit tests
191+ - test:integration -> Runs the all integration tests
192+ - test:coverage -> Runs all tests (unit + integration) and reports the code coverage
193+ - lint:code -> Runs the static code analyzer on the project
194+ - lint:typing -> Runs the type checker on the project
195+ - lint:security -> Runs the security linter on the project
196+ - docs:multiversion -> Builds the multiversion project documentation
194197 - docs:build -> Builds the project documentation
195198 - docs:open -> Opens the built project documentation
196199 - docs:clean -> Removes the documentations build folder
197- - report -> Collects and generates a metrics summary for the workspace
200+ - release:prepare -> Prepares the project for a new release.
198201
199202 sessions marked with * are selected, sessions marked with - are skipped.
200203
0 commit comments