summaryrefslogtreecommitdiff
path: root/.coveragerc
blob: 14da165ae98f5ce00745d2bfff11c017504d1dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[paths]
source =
   astroid

[report]
include =
    astroid/*
omit =
    */tests/*
exclude_lines =
    # Re-enable default pragma
    pragma: no cover

    # Debug-only code
    def __repr__

    # Type checking code not executed during pytest runs
    if TYPE_CHECKING:
    @overload