-
Notifications
You must be signed in to change notification settings - Fork 17
/
.coveragerc
62 lines (54 loc) · 1.25 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[run]
source =
ion
omit =
# omit __init__.py file
*__init__*
# omit tests
*/test/*
# omit per S&A
/*/utilities/SBE37_util*
/*/utilities/client_*
/*/utilities/inst_*
/*/simulators/sim_WHSentinelADCP*
/*/ion/zapps*
/*/ion/play*
/*/ion/core/cc/shell*
*cassandra_performance*
*gviz_api*
/*/ops/resources*
/*/eoi/dispatcher*
/*/interact/int_observer*
*instrument_web_monitor*
*mscweb*
*lazy_eye*
*notify_web_monitor*
/*/itv_trial/*
/*/itv*
/*/iontest*
/*/trial*
*cassandra_teardown*
*cassandra_schema*
*vandv*
*dbmanhole*
*parse_url_tester*
/*/coi/conversation_repository*
/*/sa/data_processing*
[report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if __name__ == .__main__.:
# 'pass' generally means 'this won't be called'
^ *pass *$
precision = 2
[html]
directory = coverage_results