We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3eb7be3 commit 86aa682Copy full SHA for 86aa682
.coveragerc
@@ -0,0 +1,7 @@
1
+# .coveragerc to control coverage.py
2
+
3
+[report]
4
+# Regexes for lines to exclude from consideration
5
+exclude_also =
6
+ # Don't complain if non-runnable code isn't run:
7
+ if __name__ == .__main__.:
tox.ini
@@ -12,8 +12,19 @@ skip_install = true
12
deps =
13
-r requirements.txt
14
pytest
15
+ pytest-cov
16
+pass_env =
17
+ FORCE_COLOR
18
+set_env =
19
+ COVERAGE_CORE = sysmon
20
commands =
- {envpython} -m pytest {posargs}
21
+ {envpython} -m pytest \
22
+ --cov . \
23
+ --cov tests \
24
+ --cov-report html \
25
+ --cov-report term \
26
+ --cov-report xml \
27
+ {posargs}
28
29
[testenv:lint]
30
skip_install = true
0 commit comments