Skip to content

Commit

Permalink
Merge pull request #107 from Nfactor26/always-upload-test-results
Browse files Browse the repository at this point in the history
Upload test cases even if tests fail
  • Loading branch information
Nfactor26 committed Jan 25, 2024
2 parents 15da615 + a1bacef commit 8f56046
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
run: dotnet test --logger "trx;" src/Pixel.Identity.UI.Tests/Pixel.Identity.UI.Tests.csproj
- name: Upload test results
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: pixel-identity-mongo-automation-test-results-${{ matrix.os }}
path: src/Pixel.Identity.UI.Tests/TestResults/*.trx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
run: dotnet test --logger "trx;" src/Pixel.Identity.UI.Tests/Pixel.Identity.UI.Tests.csproj
- name: Upload test results
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: pixel-identity-postgres-automation-test-results-${{ matrix.os }}
path: src/Pixel.Identity.UI.Tests/TestResults/*.trx
Expand Down

0 comments on commit 8f56046

Please sign in to comment.