forked from robotools/fontParts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.coveragerc
37 lines (28 loc) · 879 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
[run]
# measure 'branch' coverage in addition to 'statement' coverage
# See: http://coverage.readthedocs.io/en/coverage-4.5.1/branch.html
branch = True
# list of directories or packages to measure
source = fontParts
omit =
*/__init__.py
*/test/*
*/test.py
[paths]
source =
Lib/fontParts
.tox/*/lib/python*/site-packages/fontParts
.tox/pypy*/site-packages/fontParts
[report]
# Regexes for lines to exclude from consideration
exclude_lines =
# keywords to use in inline comments to skip coverage
pragma: no cover
# don't complain if tests don't hit defensive assertion code
(raise|except)(\s)?NotImplementedError
# don't complain if non-runnable code isn't run
if __name__ == .__main__.:
# ignore source code that can’t be found
ignore_errors = True
# when running a summary report, show missing lines
show_missing = True