diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 26 |
1 files changed, 23 insertions, 3 deletions
@@ -20,13 +20,13 @@ Consider that all inline commands below needs to be executed into ArGaze root fo pip install build ``` -- Then, build argaze package: +- Then, build ArGaze package: ``` python -m build ``` -- Then, install argaze package (replace VERSION by what has been built into dist folder): +- Then, install ArGaze package (replace VERSION by what has been built into dist folder): ``` pip install ./dist/argaze-VERSION.whl @@ -71,4 +71,24 @@ pdoc -o ./doc ./src/argaze/ ``` pdoc ./src/argaze/ - ```
\ No newline at end of file + ``` + +## Test + +ArGaze package unitary tests are based on *unittest* module. +Test files tree structure is mirroring the file tree structure of src/argaze folder. + +To run all unitary tests: + +``` +python -m unittest discover ./src/argaze.test "*.py" +``` + +To run only submodule unitary tests: + +``` +python -m unittest discover ./src/argaze.test/SUBMODULE "*.py" +``` + +.. note:: Verbose mode + *Use -v option to get more details.* |