File: .coveragerc

package info (click to toggle)
python-utils 3.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 396 kB
  • sloc: python: 2,135; makefile: 19; sh: 5
file content (29 lines) | stat: -rw-r--r-- 509 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
[run]
branch = True
source =
    python_utils
    _python_utils_tests
omit =
    */mock/*
    */nose/*
[paths]
source =
    python_utils
[report]
fail_under = 100
exclude_lines =
    pragma: no cover
    @abc.abstractmethod
    def __repr__
    if self.debug:
    if settings.DEBUG
    raise AssertionError
    raise NotImplementedError
    if 0:
    if __name__ == .__main__.:
    if typing.TYPE_CHECKING:
    if types.TYPE_CHECKING:
    @overload
    @types.overload
    @typing.overload
    types.Protocol