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 57e5131 commit b8b104aCopy full SHA for b8b104a
pyproject.toml
@@ -134,13 +134,21 @@ ban-relative-imports = "all"
134
[tool.pytest.ini_options]
135
DJANGO_SETTINGS_MODULE = "tests.settings"
136
pythonpath = [".", "src"]
137
-django_find_project = false
138
markers = ["mock_network_and_subprocess"]
139
140
# Coverage
141
[tool.coverage.run]
142
-source = ["django_tailwind_cli"]
+source = ["src"]
143
branch = true
+parallel = true
144
145
[tool.coverage.report]
146
-exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]
+show_missing = true
147
+exclude_lines = [
148
+ "pragma: no cover",
149
+ "def __repr__",
150
+ "if self.debug:",
151
+ "raise NotImplementedError",
152
+ "pass",
153
+ "if __name__ == .__main__.:",
154
+]
0 commit comments