fix: lcov -> xml pour le rapport de couverture

This commit is contained in:
ineszang44
2026-09-18 13:55:46 +02:00
parent ddf7e17788
commit ec63798807
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -99,14 +99,14 @@ jobs:
cache-dependency-glob: apps/backend/uv.lock
- name : Lancement des tests et génénration du rapport de couverture (Back)
run: uv run pytest --cov-fail-under=85 --cov-report=lcov
run: uv run pytest --cov-fail-under=85 --cov-report=xml
working-directory: apps/backend
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: backend-coverage
path: apps/backend/coverage.lcov
path: apps/backend/coverage.xml
sonarqube:
needs: [build-front, build-back, test-front, test-back]