Skip to content

Commit 3297f8c

Browse files
committed
Fix coveralls
1 parent f526f48 commit 3297f8c

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.coveragerc

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
# .coveragerc to control coverage.py
2-
# [run]
3-
# branch = True
1+
; .coveragerc to control coverage.py
2+
; [run]
3+
; branch = True
44

55
[report]
66
include =
77
workflow/*
8-
# fail_under = 100
8+
; fail_under = 100
99
show_missing = 1
10-
# Regexes for lines to exclude from consideration
10+
; Regexes for lines to exclude from consideration
1111
exclude_lines =
12-
# Have to re-enable the standard pragma
12+
; Have to re-enable the standard pragma
1313
pragma: no cover
1414
pragma: nocover
1515

16-
# Don't complain about missing debug-only code:
16+
; Don't complain about missing debug-only code:
1717
def __repr__
1818
if self\.debug
1919

20-
# Don't complain if tests don't hit defensive assertion code:
20+
; Don't complain if tests don't hit defensive assertion code:
2121
raise AssertionError
2222
raise NotImplementedError
2323

24-
# Don't complain if non-runnable code isn't run:
24+
; Don't complain if non-runnable code isn't run:
2525
if 0:
2626
if False:
2727
if __name__ == .__main__.:

run-tests.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,5 +152,4 @@ case "$ret3" in
152152
*) fail "COVERAGE FAILED" ;;
153153
esac
154154

155-
test -z "$TRAVIS" && coverage erase
156155
exit $ret3

0 commit comments

Comments
 (0)