Ignore type checking lines in coverage report

This commit is contained in:
Hugo Osvaldo Barrera 2023-09-25 16:23:47 +02:00
parent 301aa0e16f
commit 0f0e5b97d3

View file

@ -28,3 +28,8 @@ addopts = """
[tool.mypy]
ignore_missing_imports = true
[tool.coverage.report]
exclude_lines = [
"if TYPE_CHECKING:",
]