Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: appengine/predator/.coveragerc

Issue 2447253002: [Findit & Predator] Code reorg of Findit. (Closed)
Patch Set: Clean up. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698