Skip to content

Commit

Permalink
fix: Ignore test report summary just use detailed reports
Browse files Browse the repository at this point in the history
The EnricoMi/publish-unit-test-result-action expects JUnit XML format, but Maven Failsafe produces a different summary format by default.
  • Loading branch information
viv committed Jan 6, 2025
1 parent f1ad952 commit 9993ac8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,7 @@ jobs:
uses: EnricoMi/publish-unit-test-result-action@v2
if: always() # Run even if tests fail
with:
junit_files: "openfire-integration-tests/target/failsafe-reports/*.xml"
files: |
openfire-integration-tests/target/failsafe-reports/TEST-*.xml
!openfire-integration-tests/target/failsafe-reports/failsafe-summary.xml
check_name: "Integration Test Results"

0 comments on commit 9993ac8

Please sign in to comment.