Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 322 Bytes

testing.rst

File metadata and controls

25 lines (13 loc) · 322 Bytes

Testing

Tests are located in tests dir.

Commands

To run tests:

$ python -m unittest discover -s tests -v

To generate code coverage:

$ coverage run -m unittest discover -s tests -v
$ coverage html

Open htmlcov/index.html in your browser.