Skip to content

Commit

Permalink
Merge pull request #4623 from Ombi-app/test-results
Browse files Browse the repository at this point in the history
added test results into the PR pipeline [skip ci]
  • Loading branch information
tidusjar authored Apr 25, 2022
2 parents 8f30fbe + 5d58db3 commit 1c232ec
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,16 @@ jobs:
- name: Run Unit Tests
run: |
cd src
dotnet test --logger trx --results-directory "TestResults"
dotnet test --logger "trx;LogFileName=test-results.trx" || true
- name: Test Report
uses: dorny/test-reporter@v1
if: always()
with:
name: DotNET Tests
path: "**/test-results.trx"
reporter: dotnet-trx
fail-on-error: true

analysis:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1c232ec

Please sign in to comment.