About pytest

Install dependencies

1
pip install pytest pytest-cov

Check coverage

1
2
3
4
5
6
python -m pytest --cov=myutil
python -m pytest --cov=myutil --cov-report=term-missing

python -m pytest --cov=myutil.myjson
python -m pytest tests/test_myjson.py --cov=myutil

Generate html file

1
python -m pytest --cov=myutil --cov-report=html