django-model-utils/.coveragerc
Maarten ter Huurne 9dc224723b Tell coverage tool to ignore lines intended for mypy only
In particular, `if TYPE_CHECKING:` blocks and `...` in bodies of
overloaded method definitions.
2024-06-14 11:57:28 +02:00

8 lines
118 B
INI

[run]
include = model_utils/*.py
[report]
exclude_also =
# Exclusive to mypy:
if TYPE_CHECKING:$
\.\.\.$