test-reporter
test-reporter copied to clipboard
Report appear sometimes in github page and not appear all times
We are using test-reporter for generating report in github pages. When we execute sometimes report appears in github page and sometimes it is not appear. When we check checkrun details reprort is available in the Summary of step with checkrun html
Kindly help to resolve issue.
- name: QE Test Report
uses: ***/test-reporter@0d00bb14cb0cc2c9b8985df6e81dd333188224e1
if: success() || failure()
with:
name: Test Report # Name of the check run which will be created
path: |
${{ github.workspace }}/test/test_output/**/*.xml
reporter: java-junit
list-tests: 'all'
fail-on-error: 'false'
Hello, I'm facing with the same behavior in my repository. Here is my step to generate report:
- name: Test Report id: reporter continue-on-error: true uses: dorny/test-reporter@v1 if: always() with: fail-on-error: 'false' name: Test Results Report path: ${{ github.workspace }}/results/mytests.trx reporter: dotnet-trx