summaryrefslogtreecommitdiff
path: root/.coveragerc
blob: d1b8806843ca6fd37aa77221851cbefab7840019 (plain)
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
[run]
parallel = True
branch = True
source =
    flake8
    tests
omit =
    # Don't complain if non-runnable code isn't run
    */__main__.py

[paths]
source =
    src/flake8
    .tox/*/lib/python*/site-packages/flake8
    .tox/pypy/site-packages/flake8

[report]
show_missing = True
skip_covered = True
exclude_lines =
    # Have to re-enable the standard pragma
    \#\s*pragma: no cover

    # Don't complain if tests don't hit defensive assertion code:
    ^\s*raise AssertionError\b
    ^\s*raise NotImplementedError\b
    ^\s*return NotImplemented\b
    ^\s*raise$

    # Don't complain if non-runnable code isn't run:
    ^if __name__ == ['"]__main__['"]:$
    ^\s*if False:
    ^\s*if TYPE_CHECKING: