AssemblyInfo.cs 445 B

12345678
  1. [assembly: Parallelizable(ParallelScope.Children)]
  2. // I don't know why this parallelism limit was originally put here.
  3. // I *do* know that I tried removing it, and ran into the following .NET runtime problem:
  4. // https://github.com/dotnet/runtime/issues/107197
  5. // So we can't really parallelize integration tests harder either until the runtime fixes that,
  6. // *or* we fix serv3 to not spam expression trees.
  7. [assembly: LevelOfParallelism(3)]