-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy path.coveragerc
More file actions
42 lines (35 loc) · 759 Bytes
/
.coveragerc
File metadata and controls
42 lines (35 loc) · 759 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
# Coverage configuration file
# This file provides additional configuration for coverage reporting
[run]
source = merlin
omit =
*/tests/*
*/test_*
*/__pycache__/*
*/migrations/*
*/venv/*
*/.venv/*
setup.py
[report]
# Set to 0 to never fail builds based on coverage
fail_under = 0
# Show line numbers of missing coverage
show_missing = True
# Precision for coverage percentages
precision = 2
# Lines to exclude from coverage
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == "__main__":
class .*\bProtocol\):
@(abc\.)?abstractmethod
[html]
directory = htmlcov
[xml]
output = coverage.xml