From f161b7d386320cbb2a6ef10e3fc7b105e09e24fb Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Mon, 11 Aug 2025 21:41:53 +0200 Subject: [PATCH] Reduce LevelOfParallelism to 2 for integration tests (#39566) less paralelliism --- Content.IntegrationTests/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.IntegrationTests/AssemblyInfo.cs b/Content.IntegrationTests/AssemblyInfo.cs index 76fc42f3a9..b8a88e2623 100644 --- a/Content.IntegrationTests/AssemblyInfo.cs +++ b/Content.IntegrationTests/AssemblyInfo.cs @@ -5,4 +5,4 @@ // https://github.com/dotnet/runtime/issues/107197 // So we can't really parallelize integration tests harder either until the runtime fixes that, // *or* we fix serv3 to not spam expression trees. -[assembly: LevelOfParallelism(3)] +[assembly: LevelOfParallelism(2)]