- to build the documentation
- go to the
srcdirectory - make sure that
pdoc3is installed - run
pdoc --html -o ../docs customdataclass.py --force
- go to the
- to run the tests
- go to the
rootdirectory - run
python3 -m unittest discover -v -s ./tests -p "test*.py"
- go to the
- to compute the coverage
- go to the root directory
- run
coverage run -m unittest discover -s ./tests -p "test*.py" - run
coverage report -mto see the report in the terminal - run
coverage htmlto see the report in the browser
Use build.sh to build the documentation, run the tests and compute the coverage.