diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 5e7d993..728d4e6 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -27,9 +27,10 @@ dependencies = [ "pytest-asyncio", "gevent", "poethepoet>=0.27.0", + "pytest-cov", ] [tool.poe.tasks] test = "pytest tests/api.py tests/app.py tests/schemas.py" test_all = "pytest tests/*" -test_pipeline = "pytest tests/* --cov=. --cov-report xml:coverage.xml" +test_pipeline = "pytest tests/* --cov-report xml:coverage.xml"