forked from dask/dask-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.coveragerc
28 lines (26 loc) · 863 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
[run]
branch = True
source = dask_image
[report]
exclude_lines =
# Include the no cover pragma as it needs to be listed explicitly when
# using exclude_lines.
# ( http://coverage.readthedocs.io/en/coverage-4.1/excluding.html#advanced-exclusion )
pragma: no cover
# Ignore coverage of code that requires the module to be executed.
if __name__ == .__main__.:
# Ignore continue statement in code as it can't be detected as covered
# due to an optimization by the Python interpreter. See coverage issue
# ( https://bitbucket.org/ned/coveragepy/issue/198/continue-marked-as-not-covered )
# and Python issue ( http://bugs.python.org/issue2506 ).
continue
omit =
*/python?.?/*
*/site-packages/*
*/eggs/*
*/.eggs/*
*tests/*
*/travis_pypi_setup.py
*/versioneer.py
*/_version.py
*/_vendor/*