File: .coveragerc

package info (click to toggle)
ufo2ft 3.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 6,260 kB
  • sloc: python: 17,650; makefile: 10
file content (34 lines) | stat: -rw-r--r-- 897 bytes parent folder | download | duplicates (4)
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
[run]
# measure 'branch' coverage in addition to 'statement' coverage
# See: http://coverage.readthedocs.org/en/coverage-4.0.3/branch.html#branch
branch = True

# list of directories or packages to measure
source = ufo2ft

# these are treated as equivalent when combining data
[paths]
source =
    Lib/ufo2ft
    .tox/*/lib/python*/site-packages/ufo2ft
    .tox/pypy*/site-packages/ufo2ft

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
    # keywords to use in inline comments to skip coverage
    pragma: no cover

    # don't complain if tests don't hit defensive assertion code
    raise AssertionError
    raise NotImplementedError

    # don't complain if non-runnable code isn't run
    if 0:
    if __name__ == .__main__.:

# ignore source code that can’t be found
ignore_errors = True

# when running a summary report, show missing lines
show_missing = True