We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6630da9 commit 84dca27Copy full SHA for 84dca27
2 files changed
.github/workflows/python-checks.yml
@@ -25,7 +25,7 @@ jobs:
25
python-version-file: "pyproject.toml"
26
27
- name: Run tests
28
- run: uv run pytest tests --cov-fail-under=90
+ run: uv run pytest --cov=src --cov-fail-under=90
29
30
- name: Run mypy type check
31
run: uv run mypy . --config-file=pyproject.toml
pyproject.toml
@@ -41,3 +41,6 @@ line-length = 88
41
skip-magic-trailing-comma = true
42
quote-style = "single"
43
docstring-code-format = true
44
+
45
+[tool.coverage.report]
46
+exclude_also = ['@(abc\.)?abstractmethod']
0 commit comments