-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy path.coveragerc
More file actions
18 lines (17 loc) · 554 Bytes
/
.coveragerc
File metadata and controls
18 lines (17 loc) · 554 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[run]
branch = True
erase = True
package = bioformats
[report]
exclude_lines =
# 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
# Ignore coverage of code that requires the module to be executed.
if __name__ == .__main__.:
omit =
*/python?.?/*
*/site-packages/*
*tests/*