Skip to content

Commit 59c9752

Browse files
committed
[PAQA - bugfix] remove tests from coverage
1 parent 13057fa commit 59c9752

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,15 @@ ignore_errors = true
5454

5555
# ----------- PYTEST ---------
5656
[tool.pytest.ini_options]
57+
addopts = "--cov=. --cov-report=term-missing --cov-report=xml"
5758
testpaths = ["tests"]
5859
asyncio_mode = "auto"
59-
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

Comments
 (0)