Skip to content

Commit

Permalink
Fix parallel threads
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkCiliaVincenti committed Aug 18, 2024
1 parent 6cb762e commit 1ac1cac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: dotnet build --no-restore --configuration Release

- name: Test
run: dotnet test --no-restore --configuration Release --verbosity normal --collect:"XPlat Code Coverage" --settings coverlet.runsettings
run: dotnet test --no-restore --configuration Release --logger:"console;verbosity=normal" --collect:"XPlat Code Coverage" --settings coverlet.runsettings

- name: Coverage
uses: codecov/codecov-action@v3
2 changes: 1 addition & 1 deletion AsyncKeyedLock.Tests/xunit.runner.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"parallelizeTestCollections": true,
"stopOnFail": true,
"showLiveOutput": true,
"maxParallelThreads": -1
"maxParallelThreads": "0.25x"
}

0 comments on commit 1ac1cac

Please sign in to comment.