-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy path.coveragerc
More file actions
44 lines (35 loc) · 827 Bytes
/
.coveragerc
File metadata and controls
44 lines (35 loc) · 827 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
40
41
42
43
44
[run]
source = scripts,web/backend
omit =
*/tests/*
*/test_*
*/__pycache__/*
*/venv/*
*/env/*
*/.venv/*
*/site-packages/*
[report]
# Show missing lines in coverage report
show_missing = True
# Precision for coverage percentage
precision = 2
# Exclude lines from coverage
exclude_lines =
# Standard pragma
pragma: no cover
# Don't complain about missing debug code
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run
if 0:
if __name__ == .__main__.:
# Don't complain about abstract methods
@(abc\.)?abstractmethod
[html]
directory = htmlcov
[json]
output = coverage.json
pretty_print = True