OLD | NEW |
---|---|
(Empty) | |
1 [run] | |
2 include = ./appengine/findit/* | |
3 | |
4 [report] | |
5 exclude_lines = | |
6 # Have to re-enable the standard pragma | |
7 pragma: no cover | |
8 | |
9 # Don't complain about missing debug-only code: | |
10 def __repr__ | |
11 if self\.debug | |
12 | |
13 # Don't complain if tests don't hit defensive assertion code: | |
14 raise AssertionError | |
15 raise NotImplementedError | |
16 | |
17 # Don't complain if non-runnable code isn't run: | |
18 if 0: | |
19 if __name__ == ['"]__main__['"]: | |
20 | |
21 [expect_tests] | |
22 expected_coverage_min = 100 | |
OLD | NEW |