We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d05b89f commit e12eba4Copy full SHA for e12eba4
.coveragerc
pyproject.toml
@@ -60,6 +60,25 @@ ignore-words-list = "cachable"
60
[tool.pytest.ini_options]
61
testpaths = ["tests.py"]
62
63
+[tool.coverage.run]
64
+branch = true
65
+source = ["pytest_test_utils"]
66
+
67
+[tool.coverage.paths]
68
+source = ["dvc"]
69
70
+[tool.coverage.report]
71
+exclude_lines = [
72
+ "if __name__ == .__main__.:",
73
+ "if TYPE_CHECKING:",
74
+ "if typing.TYPE_CHECKING:",
75
+ "@overload",
76
+ "pragma: no cover",
77
+ "raise AssertionError",
78
+ "raise NotImplementedError",
79
+]
80
+show_missing = true
81
82
[tool.mypy]
83
# Error output
84
show_column_numbers = true
0 commit comments