A course about how to make software fail.
This repo contains some programming exercises from this course (not all of them, ~ the second half).
- install it with
pip install coverage - run it with command
coverage run --branch your-file.py && coverage report && coverage html--branchalso measures branch coverage (by default there is only statement coverage)reportshows coverage report in console outputhtmlgenerates html report (you have to locate and open it manualy with your browser)