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

This commit is contained in:
Torsten Grote 2024-04-08 10:31:30 -03:00 committed by Hans-Christoph Steiner
parent 9627b27553
commit f3b8444d38
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