T5: Code coverage incomplete

Slide 21 about code coverage is incomplete.

To do code coverage metrics with testing, they'll need to install this package: https://pypi.python.org/pypi/pytest-cov

Then, to run coverage with pytest:

pytest --cov .

This will run pytest on the current directory, automatically discover all tests, run them and report coverage metrics for all python files in the current directory.