Skip to content

Commit e20a5cc

Browse files
authored
fixing test configs (#216)
1 parent 6acbcf4 commit e20a5cc

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ default:
44
check: lint types test
55

66
coverage:
7-
uv run coverage run --source=thin_controller -m pytest
7+
uv run coverage run --source=thin_controller --omit="thin_controller/__main__.py,thin_controller/handler.py" -m pytest
88
uv run coveralls
99

1010

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,13 @@ load-plugins = "pylint_pytest"
4545

4646
[tool.pytest.ini_options]
4747
testpaths = ["tests"]
48+
norecursedirs = ["terraform/*", "assets/*"]
4849

4950
[tool.mypy]
5051
plugins = "pydantic.mypy"
5152

5253
[tool.pyright]
53-
exclude = ["terraform", ".venv"]
54+
exclude = ["terraform/*", ".venv"]
5455

5556
[tool.coverage.run]
5657
omit = [

0 commit comments

Comments
 (0)