tests
python -m unittest discover -s tests/# generate coverage data (results are placed in the .coverage file)
coverage run --branch -m unittest discover -s tests/
# generate a terminal coverage report
coverage report -m
# generate html files (results are placed in the htmlcov/ directory)
coverage htmlLast updated