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.
2 parents 20acae7 + c556321 commit 919ccc1Copy full SHA for 919ccc1
pyproject.toml
@@ -26,12 +26,17 @@ pythonpath = [
26
"."
27
]
28
[tool.coverage.run]
29
+source = ["src"]
30
omit = [
31
"*/.cursor/extensions/*",
32
"*/pythonFiles/lib/python/*",
33
"*/site-packages/*",
34
+ "src/json_repair/__main__.py",
35
36
[tool.coverage.report]
37
+include = [
38
+ "src/json_repair/*",
39
+]
40
exclude_also = [
41
'def __repr__',
42
'if self.debug:',
@@ -111,4 +116,4 @@ line-ending = "auto"
111
116
112
117
[tool.ruff.lint.per-file-ignores]
113
118
# Explicit re-exports is fine in __init__.py, still a code smell elsewhere.
114
-"__init__.py" = ["PLC0414"]
119
+"__init__.py" = ["PLC0414"]
0 commit comments