OLD | NEW |
| (Empty) |
1 [run] | |
2 include = ./* | |
3 omit = | |
4 # Virtual environment with third_party packages. | |
5 ./ENV/* | |
6 | |
7 # Add chromium_build, which wasn't test.py-enabled for a long time. | |
8 ./appengine/chromium_build/* | |
9 | |
10 # Add monorail's third-party packages and worst offenders | |
11 ./appengine/monorail/third_party/* | |
12 ./appengine/monorail/testing/* | |
13 | |
14 # Appengine third_party packages, committed into the repo as is. | |
15 ./appengine/third_party/* | |
16 | |
17 # Luci code added via DEPS. | |
18 ./luci/* | |
19 | |
20 # Antibody third_party files | |
21 ./infra/tools/antibody/static/third_party/* | |
22 | |
23 [report] | |
24 exclude_lines = | |
25 # Have to re-enable the standard pragma | |
26 pragma: no cover | |
27 | |
28 # Don't complain about missing debug-only code: | |
29 def __repr__ | |
30 if self\.debug | |
31 | |
32 # Don't complain if tests don't hit defensive assertion code: | |
33 raise AssertionError | |
34 raise NotImplementedError | |
35 | |
36 # Don't complain if non-runnable code isn't run: | |
37 if 0: | |
38 if __name__ == ['"]__main__['"]: | |
39 | |
40 [expect_tests] | |
41 expected_coverage_min = 92 | |
OLD | NEW |