Document how to get coverage report

This commit is contained in:
Daniel Graña 2015-08-13 19:02:51 -03:00
parent cb9577a6d4
commit 54f9837804
1 changed files with 7 additions and 0 deletions

View File

@ -154,6 +154,13 @@ To run a specific test (say ``tests/test_loader.py``) use:
``tox -- tests/test_loader.py``
To see coverage report install `coverage`_ (``pip install coverage``) and run:
``coverage report``
see output of ``coverage --help`` for more options like html or xml report.
.. _coverage: https://pypi.python.org/pypi/coverage
Writing tests
-------------