File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
- # .coveragerc to control coverage.py
2
- # [run]
3
- # branch = True
1
+ ; .coveragerc to control coverage.py
2
+ ; [run]
3
+ ; branch = True
4
4
5
5
[report]
6
6
include =
7
7
workflow/*
8
- # fail_under = 100
8
+ ; fail_under = 100
9
9
show_missing = 1
10
- # Regexes for lines to exclude from consideration
10
+ ; Regexes for lines to exclude from consideration
11
11
exclude_lines =
12
- # Have to re-enable the standard pragma
12
+ ; Have to re-enable the standard pragma
13
13
pragma: no cover
14
14
pragma: nocover
15
15
16
- # Don't complain about missing debug-only code:
16
+ ; Don't complain about missing debug-only code:
17
17
def __repr__
18
18
if self\.debug
19
19
20
- # Don't complain if tests don't hit defensive assertion code:
20
+ ; Don't complain if tests don't hit defensive assertion code:
21
21
raise AssertionError
22
22
raise NotImplementedError
23
23
24
- # Don't complain if non-runnable code isn't run:
24
+ ; Don't complain if non-runnable code isn't run:
25
25
if 0:
26
26
if False:
27
27
if __name__ == .__main__.:
Original file line number Diff line number Diff line change @@ -152,5 +152,4 @@ case "$ret3" in
152
152
* ) fail " COVERAGE FAILED" ;;
153
153
esac
154
154
155
- test -z " $TRAVIS " && coverage erase
156
155
exit $ret3
You can’t perform that action at this time.
0 commit comments