Files
wwdpublic/Content.IntegrationTests/AssemblyInfo.cs
Spatison a0c90a1c0b [Fix] Test (#831)
* fix test

* fix

* fix

* fix

* fix
2025-09-06 10:55:30 +03:00

9 lines
445 B
C#

[assembly: Parallelizable(ParallelScope.Children)]
// I don't know why this parallelism limit was originally put here.
// I *do* know that I tried removing it, and ran into the following .NET runtime problem:
// 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(2)]