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