File: .coveragerc

package info (click to toggle)
python-pluggy 1.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 476 kB
  • sloc: python: 3,344; sh: 58; makefile: 6
file content (35 lines) | stat: -rw-r--r-- 693 bytes parent folder | download
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
[run]
include =
  pluggy/*
  src/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*$
    # ignore coverage on ruff line continued
     ^\s*def.*:\ \.\.\.\s*$
     .*: ...$
    # ignore coverage on pass lines
    ^\s*passs*$