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

Side by Side Diff: tools/telemetry/third_party/coverage/metacov.ini

Issue 1366913004: Add coverage Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months 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
(Empty)
1 # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
2 # For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
3
4 # Settings to use when using coverage.py to measure itself.
5 [run]
6 branch = true
7 data_file = $COVERAGE_METAFILE
8 parallel = true
9 source =
10 $COVERAGE_HOME/coverage
11 $COVERAGE_HOME/tests
12
13 [report]
14 # We set a different pragma so our code won't be confused with test code.
15 exclude_lines =
16 # pragma: not covered
17 # pragma: nested
18 def __repr__
19 raise AssertionError
20 # pragma: debugging
21 # pragma: only failure
22
23 partial_branches =
24 # pragma: part covered
25 if env.TESTING:
26
27 ignore_errors = true
28 precision = 1
29
30 [paths]
31 source =
32 .
33 *\coverage\trunk
34 */coverage/trunk
35 *\coveragepy
OLDNEW
« no previous file with comments | « tools/telemetry/third_party/coverage/lab/show_pyc.py ('k') | tools/telemetry/third_party/coverage/pylintrc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698