chore: coverage report improvements

This commit is contained in:
ITQ
2025-11-20 16:38:21 +03:00
parent faad52d422
commit 1941a633c0
2 changed files with 5 additions and 3 deletions
+3 -1
View File
@@ -71,7 +71,9 @@ RUN uv sync --group tests --frozen --no-cache
RUN mkdir -p /app/cov
CMD [ "sh", "-c", "coverage run --source=src -m pytest -v && coverage report > /app/cov/coverage.txt && coverage json -o /app/cov/coverage.xml && coverage html -o /app/cov/coverage.html" ]
RUN mkdir /app/cov/html
CMD [ "sh", "-c", "coverage run --source=src -m pytest -v && coverage report > /app/cov/coverage.txt && coverage json -o /app/cov/coverage.json && coverage html -d /app/cov/html" ]
# Stage 4: Migrations