Skip to content

Commit

Permalink
🔧 Attempt to capture test results using trx2junit
Browse files Browse the repository at this point in the history
  • Loading branch information
canterberry committed May 29, 2019
1 parent 8ef534d commit 66ee5e1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ jobs:
at: /docker
- run:
name: Testing
command: dotnet test --configuration Release --logger:trx --results-directory reports/trx Blockmason.Link.Tests/Blockmason.Link.Tests.csproj
command: dotnet test --configuration Release --logger trx --no-build --results-directory TestResults Blockmason.Link.Tests/Blockmason.Link.Tests.csproj
- run:
name: Preparing test report
command: |
find TestResults -type f
dotnet tool install -g trx2junit
/docker/.dotnet/tools/trx2junit 'TestResults/**/*.trx'
- store_test_results:
path: reports/trx
path: TestResults

0 comments on commit 66ee5e1

Please sign in to comment.