forked from pypa/virtualenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.coveragerc
33 lines (30 loc) · 822 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
[coverage:report]
show_missing = True
exclude_lines =
\#\s*pragma: no cover
^\s*raise AssertionError\b
^\s*raise NotImplementedError\b
^\s*raise$
^if __name__ == ['"]__main__['"]:$
omit =
# site.py is ran before the coverage can be enabled, no way to measure coverage on this
src/virtualenv/create/via_global_ref/builtin/python2/site.py
src/virtualenv/create/via_global_ref/_virtualenv.py
src/virtualenv/activation/python/activate_this.py
src/virtualenv/seed/wheels/embed/pip-*.whl/*
[coverage:paths]
source =
src
.tox/*/lib/python*/site-packages
.tox/pypy*/site-packages
.tox\*\Lib\site-packages\
*/src
*\src
[coverage:run]
branch = false
parallel = true
dynamic_context = test_function
source =
${_COVERAGE_SRC}
[coverage:html]
show_contexts = true