We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8baa9f commit 44ca3f2Copy full SHA for 44ca3f2
pyproject.toml
@@ -25,7 +25,7 @@ dependencies = [
25
]
26
27
[project.optional-dependencies]
28
-test = ["pytest >= 8.0", "pytest-cov >= 5.0"]
+test = ["pytest >= 8.0", "pytest-cov >= 5.0", "coverage[toml] >= 7.2"]
29
lint = ["pre-commit == 4.2.0"]
30
dev = ["changelist == 0.5"]
31
@@ -92,3 +92,13 @@ ignore = [
92
93
[tool.ruff.format]
94
docstring-code-format = true
95
+
96
+[tool.coverage.run]
97
+branch = true
98
+source = ["lazy_loader", "tests"]
99
100
+[tool.coverage.paths]
101
+source = [
102
+ "src/lazy_loader",
103
+ "*/site-packages/lazy_loader",
104
+]
0 commit comments