generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 275
Open
Labels
bugSomething isn't workingSomething isn't working
Description
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
Thanks in advance! 🙂
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working