We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6acbcf4 commit e20a5ccCopy full SHA for e20a5cc
2 files changed
justfile
@@ -4,7 +4,7 @@ default:
4
check: lint types test
5
6
coverage:
7
- uv run coverage run --source=thin_controller -m pytest
+ uv run coverage run --source=thin_controller --omit="thin_controller/__main__.py,thin_controller/handler.py" -m pytest
8
uv run coveralls
9
10
pyproject.toml
@@ -45,12 +45,13 @@ load-plugins = "pylint_pytest"
45
46
[tool.pytest.ini_options]
47
testpaths = ["tests"]
48
+norecursedirs = ["terraform/*", "assets/*"]
49
50
[tool.mypy]
51
plugins = "pydantic.mypy"
52
53
[tool.pyright]
-exclude = ["terraform", ".venv"]
54
+exclude = ["terraform/*", ".venv"]
55
56
[tool.coverage.run]
57
omit = [
0 commit comments