test-reporter icon indicating copy to clipboard operation
test-reporter copied to clipboard

Report appear sometimes in github page and not appear all times

Open maha51ece-tech opened this issue 1 year ago • 1 comments

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'

maha51ece-tech avatar Jun 12 '23 09:06 maha51ece-tech

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

alexsavenok-savenduk avatar Jun 29 '23 07:06 alexsavenok-savenduk