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 21219c2 commit 84ba461Copy full SHA for 84ba461
tests/BenchmarkDotNet.IntegrationTests/InProcessDiagnoserTests.cs
@@ -81,7 +81,8 @@ bool ShouldSkip()
81
return true;
82
if (RunsDuringSameLaunch(runModes[1]) && RunsDuringSameLaunch(runModes[2]))
83
84
- return false;
+ // Reduce test time by skipping extra None modes.
85
+ return runModes[0] == RunMode.None || runModes[2] == RunMode.None;
86
}
87
88
0 commit comments