summaryrefslogtreecommitdiff
path: root/.coveragerc
blob: 12018356bdefad8a35358b8205f2268ebb96820b (plain)
1
2
3
4
5
6
7
8
9
[report]
# Regexes for lines to exclude from consideration
exclude_lines =
    # Re-enable the standard pragma
    pragma: no cover
    # Don't complain if non-runnable code isn't run
    if __name__ == .__main__.:
    # TYPE_CHECKING is False at runtime
    if typing.TYPE_CHECKING: