File: .coveragerc

package info (click to toggle)
python-xknx 3.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,064 kB
  • sloc: python: 40,895; javascript: 8,556; makefile: 32; sh: 12
file content (25 lines) | stat: -rw-r--r-- 482 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
21
22
23
24
25
[run]
source = xknx
relative_files = True

omit =


[report]
precision = 2
# Regexes for lines to exclude from consideration
exclude_lines =
    # Don't complain about type checking imports:
    if TYPE_CHECKING:

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

    # Don't complain about logs
    logger.debug
    logger.info
    logger.warning
    logger.error

    # Don't complain about missing debug-only code:
    def __repr__