-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy path.coveragerc
More file actions
27 lines (23 loc) · 622 Bytes
/
.coveragerc
File metadata and controls
27 lines (23 loc) · 622 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[run]
omit =
# leading `*/` for pytest-dev/pytest-cov#456
*/.tox/*
# local
*/_vendor/*
*/tools/*
*/setuptools/_distutils/*
# See #4588 for integration tests coverage
*/setuptools/tests/integration/*
*/setuptools/tests/test_integration.py
disable_warnings =
couldnt-parse
# local
*/_validate_pyproject/* # generated code, tested in `validate-pyproject`
[report]
show_missing = True
exclude_also =
# Exclude common false positives per
# https://coverage.readthedocs.io/en/latest/excluding.html#advanced-exclusion
# Ref jaraco/skeleton#97 and jaraco/skeleton#135
class .*\bProtocol\):
if TYPE_CHECKING: