Merge branch 'junit-report' into 'master'

Use junit test reports, so it is easier to see which test failed

See merge request fdroid/fdroidclient!1379
This commit is contained in:
Torsten Grote 2024-04-10 12:19:02 +00:00
commit d64d6b802e
1 changed files with 7 additions and 0 deletions

View File

@ -62,6 +62,10 @@ workflow:
- app/build/outputs/apk
- libs/*/build/reports
- build/reports
reports:
junit:
- app/build/**/TEST-*.xml
- libs/*/build/**/TEST-*.xml
expire_in: 1 week
when: on_failure
after_script:
@ -90,6 +94,9 @@ app assembleFullRelease test:
- app/build/reports
- app/build/outputs/apk
- libs/*/build/reports
reports:
junit:
- app/build/test-results/*/TEST-*.xml
expire_in: 1 week
when: always