We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ebff04 commit 8f088e0Copy full SHA for 8f088e0
1 file changed
.github/workflows/backend-app.yml
@@ -97,14 +97,13 @@ jobs:
97
- name: Run tests with pytest using uv
98
run: |
99
cd backend
100
- pytest --junitxml=junit/test-results.xml --cov-report=xml --cov-report=html --cov=. | tee pytest-coverage.txt
+ pytest --junitxml=junit/test-results.xml --cov=. | tee pytest-coverage.txt
101
shell: bash
102
103
- name: Pytest coverage comment
104
if: github.event_name == 'pull_request' && always()
105
uses: MishaKav/pytest-coverage-comment@main
106
with:
107
- pytest-xml-coverage-path: backend/coverage.xml
108
pytest-coverage-path: backend/pytest-coverage.txt
109
junitxml-path: backend/junit/test-results.xml
110
title: Pytest Coverage Report - Backend
0 commit comments