forked from macagua/cybrosys_school
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.coveragerc
36 lines (30 loc) · 1.05 KB
/
.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
# .coveragerc to control coverage.py
[run]
# to avoid being overridden by server tests
data_file = .coverage_mqt
## a list of file name patterns, the files to leave out of measurement or reporting.
omit = *system_site_packages*, *site-packages*, *virtualenv*
## a list of packages or directories, the source to measure during execution.
# source = models/sale_order.py,models/student.py
[report]
## a list of regular expressions for lines to exclude from consideration.
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain if non-runnable code isn't run:
if __name__ == .__main__.:
## a list of file name patterns, the files to leave out of reporting.
omit =
demo/*
# doc/*
security/*
tests/*
views/*
## when running a summary report, show missing lines.
show_missing = True
[html]
## where to write the HTML report files.
# directory = coveragereport
## the title to use for the report.
title = Coverage report from 'cybrosys_school' package