summaryrefslogtreecommitdiff
path: root/metacov.ini
blob: a16c6d668b264a98a5d1934fa1e2551517438331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt

# Settings to use when using coverage.py to measure itself.
[run]
branch = true
data_file = $COVERAGE_METAFILE
parallel = true
source =
    $COVERAGE_HOME/coverage
    $COVERAGE_HOME/tests

[report]
# We set a different pragma so our code won't be confused with test code.
exclude_lines =
    pragma: not covered
    pragma: nested
    def __repr__
    raise AssertionError
    pragma: debugging
    pragma: only failure
    pragma: only jython

partial_branches =
    pragma: part covered
    pragma: if failure
    if env.TESTING:

ignore_errors = true
precision = 1

[paths]
source =
    .
    *\coverage\trunk
    */coverage/trunk
    *\coveragepy