File: .coveragerc

package info (click to toggle)
python-bytecode 0.16.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 780 kB
  • sloc: python: 8,283; makefile: 169; sh: 40
file content (20 lines) | stat: -rw-r--r-- 371 bytes parent folder | download
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
    \.\.\.