We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4693f9e commit 3aafd97Copy full SHA for 3aafd97
requirements/cov.txt
@@ -0,0 +1 @@
1
+pytest-cov==2.5.1
tox.ini
@@ -29,3 +29,14 @@ commands =
29
--profile-path={toxinidir} \
30
--profile=prospector \
31
--die-on-tool-error
32
+
33
34
+[testenv:coverage]
35
+deps =
36
+ -r{toxinidir}/requirements/pip.txt
37
+ -r{toxinidir}/requirements/cov.txt
38
+whitelist_externals = echo
39
+commands =
40
+ py.test --disable-pytest-warnings \
41
+ --cov-report=term --cov-report=html --cov=. {posargs}
42
+ echo Annotated HTML coverage report is in {toxinidir}/readthedocs/htmlcov/index.html
0 commit comments