File: .coveragerc

package info (click to toggle)
python-pluggy 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 464 kB
  • sloc: python: 3,205; sh: 58; makefile: 6
file content (29 lines) | stat: -rw-r--r-- 539 bytes parent folder | download | duplicates (6)
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
[run]
include =
  pluggy/*
  testing/*
  */lib/python*/site-packages/pluggy/*
  */pypy*/site-packages/pluggy/*
  *\Lib\site-packages\pluggy\*
branch = 1

[paths]
source = pluggy/
  */lib/python*/site-packages/pluggy/
  */pypy*/site-packages/pluggy/
  *\Lib\site-packages\pluggy\

[report]
exclude_lines =
    # Have to re-enable the standard pragma
    pragma: no cover

    if TYPE_CHECKING:
    if False:

    if __name__ == .__main__.:

    raise NotImplementedError

    # Ignore coverage on lines solely with `...`
    ^\s*\.\.\.\s*$