tfc-mirror/.coveragerc

12 lines
297 B
Plaintext
Raw Permalink Normal View History

2017-08-30 00:28:42 +02:00
# .coveragerc to control coverage.py
[report]
# Regexes for lines to exclude from consideration
exclude_lines =
2019-08-23 00:30:57 +02:00
# Ignore unreachable lines such as debugging code for third-party modules
2019-01-24 03:01:00 +01:00
pragma: no cover
2017-08-30 00:28:42 +02:00
# TYPE_CHECKING is True only during type checking
if typing.TYPE_CHECKING: