Skip to content

Commit

Permalink
Temporarily remove MacOS from unit test matrix.
Browse files Browse the repository at this point in the history
Allow unit tests parallelization (should work with cached dependencies).
  • Loading branch information
GinoCanessa committed Sep 9, 2024
1 parent bf3af98 commit ff38dff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest, windows-latest]
# os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.Health.Fhir.CodeGen.Tests/xunit.runner.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"maxParallelThreads": 1,
"maxParallelThreads": 5,
"parallelAlgorithm": "conservative",
"parallelizeAssembly": false,
"parallelizeTestCollections": false
"parallelizeAssembly": true,
"parallelizeTestCollections": true
}

0 comments on commit ff38dff

Please sign in to comment.