From d1cd60b010387643a7e2dcbed01fb6efeeb5f662 Mon Sep 17 00:00:00 2001 From: Gino Canessa Date: Thu, 12 Sep 2024 14:42:16 -0500 Subject: [PATCH] Disable parallelization of unit tests. --- src/Microsoft.Health.Fhir.CodeGen.Tests/xunit.runner.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Microsoft.Health.Fhir.CodeGen.Tests/xunit.runner.json b/src/Microsoft.Health.Fhir.CodeGen.Tests/xunit.runner.json index d53abb00b..4a5913dcc 100644 --- a/src/Microsoft.Health.Fhir.CodeGen.Tests/xunit.runner.json +++ b/src/Microsoft.Health.Fhir.CodeGen.Tests/xunit.runner.json @@ -1,6 +1,6 @@ { - "maxParallelThreads": 5, + "maxParallelThreads": 1, "parallelAlgorithm": "conservative", - "parallelizeAssembly": true, - "parallelizeTestCollections": true + "parallelizeAssembly": false, + "parallelizeTestCollections": false }