-
Notifications
You must be signed in to change notification settings - Fork 8
/
.coveragerc
38 lines (28 loc) · 1012 Bytes
/
.coveragerc
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
# .coveragerc to control code coverage tool
# https://coverage.readthedocs.io/en/latest/config.html
[run]
# Path where source is stored
source = wxflow/
# Omit some source code patterns when computing code coverage
omit =
setup.py
# whether to measure branch coverage in addition to statement coverage.
# https://coverage.readthedocs.io/en/latest/branch.html#branch
branch = True
[report]
# number of digits after the decimal point to display for reported coverage percentages
precision = 2
# when running a summary report in terminal, show missing lines
# show_missing = True
# don’t report files that are 100% covered. This helps you focus on files that need attention.
# skip_covered = True
# don’t report files that have no executable code (such as __init__.py files)
skip_empty = True
[html]
# where to write the HTML report files
directory = htmlcov
# To view the dynamic context (cf. above) in HTML report
show_contexts = True
[xml]
# where to write the XML report
output = coverage.xml