You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a Junit test fails, its hard to identify which test had failed because of the size of the log file.
A github action to publish the Junit test report will be useful.
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
The text was updated successfully, but these errors were encountered:
When a Junit test fails, its hard to identify which test had failed because of the size of the log file.
A github action to publish the Junit test report will be useful.
The text was updated successfully, but these errors were encountered: