We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4693f9e + db66b8e commit 99815f7Copy full SHA for 99815f7
.gitignore
@@ -38,3 +38,4 @@ xml_output
38
public_*
39
private_*
40
.rope_project/
41
+readthedocs/htmlcov
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
+ pytest-cov
+whitelist_externals = echo
+commands =
+ py.test --disable-pytest-warnings \
+ --cov-report=term --cov-report=html --cov=. {posargs}
42
+ echo Annotated HTML coverage report is in {toxinidir}/readthedocs/htmlcov/index.html
0 commit comments