We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43550ca commit fc7c615Copy full SHA for fc7c615
test/TestBuildingBlocks/IntegrationTest.cs
@@ -26,7 +26,7 @@ public abstract class IntegrationTest : IAsyncLifetime
26
27
private static SemaphoreSlim GetDefaultThrottleSemaphore()
28
{
29
- int maxConcurrentTestRuns = OperatingSystem.IsWindows() && Environment.GetEnvironmentVariable("CI") != null ? 32 : 64;
+ int maxConcurrentTestRuns = OperatingSystem.IsWindows() && string.IsNullOrEmpty(Environment.GetEnvironmentVariable("VSAPPIDDIR")) ? 32 : 64;
30
return new SemaphoreSlim(maxConcurrentTestRuns);
31
}
32
0 commit comments