-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.coveragerc
More file actions
39 lines (34 loc) · 716 Bytes
/
.coveragerc
File metadata and controls
39 lines (34 loc) · 716 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
28
29
30
31
32
33
34
35
36
37
38
39
# Coverage configuration for CodeFRAME
[run]
source = codeframe
omit =
*/tests/*
*/test_*.py
*/__pycache__/*
*/venv/*
*/env/*
setup.py
[report]
# Set minimum coverage threshold
# NOTE: Temporarily lowered from 65 to 60 due to v1 test skipping.
# TODO: Restore to 65 after removing unused v1 code paths.
fail_under = 60
precision = 2
show_missing = true
skip_covered = false
# Exclude lines from coverage
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
if TYPE_CHECKING:
@abstractmethod
@abc.abstractmethod
Protocol
pass
[html]
directory = htmlcov
[xml]
output = coverage.xml