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 288a7a7 commit 4501116Copy full SHA for 4501116
3 files changed
.coveragerc
pyproject.toml
@@ -108,6 +108,13 @@ filterwarnings = [
108
]
109
testpaths = [ "tests" ]
110
111
+[tool.coverage.report]
112
+# Regexes for lines to exclude from consideration
113
+exclude_also = [
114
+ # Don't complain if non-runnable code isn't run:
115
+ "if __name__ == .__main__.:",
116
+]
117
+
118
[tool.mypy]
119
pretty = true
120
strict = true
tox.ini
@@ -12,8 +12,6 @@ extras =
12
tests
13
pass_env =
14
FORCE_COLOR
15
-set_env =
16
- COVERAGE_CORE = sysmon
17
commands =
18
{envpython} -m pytest \
19
--cov humanize \
0 commit comments