Enables Codecov test reporting for the backend (#9295)

This commit is contained in:
Trenton H 2025-03-04 10:38:06 -08:00 committed by GitHub
parent f3e6ed56b9
commit d82555e644
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 1 deletions

View File

@ -167,7 +167,9 @@ jobs:
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: backend-coverage-report name: backend-coverage-report
path: coverage.xml path: |
coverage.xml
junit.xml
retention-days: 7 retention-days: 7
if-no-files-found: error if-no-files-found: error
- -
@ -315,6 +317,14 @@ jobs:
# future expansion # future expansion
flags: backend flags: backend
directory: src/ directory: src/
-
name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: backend
directory: src/
- -
name: Use Node.js 20 name: Use Node.js 20
uses: actions/setup-node@v4 uses: actions/setup-node@v4

View File

@ -329,6 +329,8 @@ addopts = [
"--maxprocesses=16", "--maxprocesses=16",
"--quiet", "--quiet",
"--durations=50", "--durations=50",
"--junitxml=junit.xml",
"-o junit_family=legacy",
] ]
norecursedirs = [ "src/locale/", ".venv/", "src-ui/" ] norecursedirs = [ "src/locale/", ".venv/", "src-ui/" ]