Skip to content

Commit 84ba461

Browse files
committed
Reduce number of tests.
1 parent 21219c2 commit 84ba461

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/BenchmarkDotNet.IntegrationTests/InProcessDiagnoserTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ bool ShouldSkip()
8181
return true;
8282
if (RunsDuringSameLaunch(runModes[1]) && RunsDuringSameLaunch(runModes[2]))
8383
return true;
84-
return false;
84+
// Reduce test time by skipping extra None modes.
85+
return runModes[0] == RunMode.None || runModes[2] == RunMode.None;
8586
}
8687
}
8788
}

0 commit comments

Comments
 (0)