third_party.pylibs.pylint.src/.coveragerc

29 lines
626 B
Plaintext
Raw Normal View History

[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
2021-06-12 17:53:03 +00:00
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 exectued during pytest runs
raise NotImplementedError()