summaryrefslogtreecommitdiff
path: root/.coveragerc
blob: ddfcbd334826aae0b9ef1c6f4605957d5fbaada6 (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
[paths]
source =
   pylint

[report]
include =
    pylint/*
omit =
    */test/*
# TODO: 3.0: Remove these after these files have been removed
    pylint/config/configuration_mixin.py
    pylint/config/option.py
    pylint/config/option_manager_mixin.py
    pylint/config/option_parser.py
    pylint/config/options_provider_mixin.py
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

    # Abstract methods are not executed during pytest runs
    raise NotImplementedError()