File: .coveragerc

package info (click to toggle)
python-bytecode 0.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 820 kB
  • sloc: python: 8,778; makefile: 169; sh: 40
file content (20 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[run]
branch = True

[paths]
source =
   src
   */site-packages

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
    # Have to re-enable the standard pragma
    pragma: no cover

    # Don't complain if tests don't hit defensive assertion code:
    raise NotImplementedError
    pass

    # Don't complain about ellipsis in overload
    \.\.\.