-
Notifications
You must be signed in to change notification settings - Fork 0
/
.coveragerc
30 lines (22 loc) · 862 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
# "coverage" config file for syslog2 project.
#
# For documentation, see:
# https://coverage.readthedocs.org/en/latest/config.html
[run]
# Controls whether branch coverage is measured, vs. just statement coverage.
# TODO: Once statement coverage gets better, enable branch coverage.
branch = False
# If True, stores relative file paths in data file (needed for Github Actions).
# Using this parameter requires coverage>=5.0
relative_files = True
# The following files are omitted in the coverage.
# omit =
[report]
# Controls whether the line numbers of the lines without coverage are shown
# in the text form of the report. This variable does not change the information
# in the html form of the report.
show_missing = False
[html]
# Location for html report. Must be in sync with the corresponding variable in
# the Makefile.
directory = coverage_html