Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 448 Bytes

HACKING.rst

File metadata and controls

29 lines (17 loc) · 448 Bytes

Working on backports.os

Running the tests

Running tox, detox, or pytest should all work.

With unittest:

python -m unittest discover tests

Coverage

With coverage:

coverage run -m unittest discover tests
coverage report
coverage html

With pytest and pytest-cov:

py.test --cov
py.test --cov --cov-report=html