fix tests

This commit is contained in:
Yonokid
2025-12-27 18:52:38 -05:00
parent 4ec426c34e
commit 65abde116e
4 changed files with 25 additions and 44 deletions

View File

@@ -29,27 +29,6 @@ markers = [
"integration: marks tests as integration tests",
]
[tool.coverage.run]
source = ["libs"]
omit = [
"*/test/*",
"*/__pycache__/*",
"*/venv/*",
"*/.venv/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"class .*\\bProtocol\\):",
"@(abc\\.)?abstractmethod",
]
[tool.vulture]
exclude = ["*.git", ".github/", ".venv/", "cache/"]
paths = ["."]