Skip to content

Outputs URL information request #669

@nickkostov

Description

@nickkostov

Describe the bug

A clear and concise description of what the bug is.

To Reproduce

Steps to reproduce the behavior:
We generate dotnet tests and expect the url and html rul generation to happen.
Maybe I am misunderstanding it.

Here is the example usage:

      - name: Generate test report
        id: test_report
        uses: dorny/test-reporter@v2
        if: ${{ !cancelled() }}
        with:
          name: "Test Report: ${{ inputs.testCategory }}"
          path: "WeArePlanet.E2E.Tests/TestResults/*.trx"
          reporter: "dotnet-trx"
          only-summary: false
          use-actions-summary: true
          badge-title: "${{ inputs.testCategory }}"
          list-suites: "all"
          list-tests: "all"
          fail-on-error: "true"
          fail-on-empty: "true"
      
      - name: Display report outputs
        if: ${{ !cancelled() }}
        run: |
          echo "Conclusion: ${{ steps.test_report.outputs.conclusion }}"
          echo "Passed: ${{ steps.test_report.outputs.passed }}"
          echo "Failed: ${{ steps.test_report.outputs.failed }}"
          echo "Skipped: ${{ steps.test_report.outputs.skipped }}"
          echo "Time: ${{ steps.test_report.outputs.time }}"
          echo "URL: ${{ steps.test_report.outputs.url }}"
          echo "HTML URL: ${{ steps.test_report.outputs.url_html }}"

Expected behavior

I expect something to be generated in the html url and url.
We have no results there.

Screenshots

Image

Thanks in advance! 🙂

Metadata

Metadata

Labels

bugSomething isn't working

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions