1 parent 13057fa commit 59c9752Copy full SHA for 59c9752
1 file changed
pyproject.toml
@@ -54,6 +54,15 @@ ignore_errors = true
54
55
# ----------- PYTEST ---------
56
[tool.pytest.ini_options]
57
+addopts = "--cov=. --cov-report=term-missing --cov-report=xml"
58
testpaths = ["tests"]
59
asyncio_mode = "auto"
-addopts = "--cov=. --cov-report=term-missing"
60
+
61
+[tool.coverage.run]
62
+source = ["."]
63
+omit = [
64
+ "tests/*",
65
+ "frontend/*",
66
+ "venv/*",
67
+ ".venv/*",
68
+]
0 commit comments