File tree 2 files changed +6
-0
lines changed
tests/BenchmarkDotNet.IntegrationTests
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -289,6 +289,9 @@ public void WhenJobIsDefinedViaAttributeAndArgumentsDontContainJobArgumentOnlySi
289
289
[ Fact ]
290
290
public void JobNotDefinedButStillBenchmarkIsExecuted ( )
291
291
{
292
+ if ( ContinuousIntegration . IsAppVeyorOnWindows ( ) )
293
+ return ; // timeouts
294
+
292
295
var types = new [ ] { typeof ( JustBenchmark ) } ;
293
296
var switcher = new BenchmarkSwitcher ( types ) ;
294
297
MockExporter mockExporter = new MockExporter ( ) ;
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ public RunStrategyTests(ITestOutputHelper output) : base(output) { }
19
19
[ Fact ]
20
20
public void RunStrategiesAreSupported ( )
21
21
{
22
+ if ( ContinuousIntegration . IsAppVeyorOnWindows ( ) )
23
+ return ; // timeouts
24
+
22
25
var config = ManualConfig . CreateEmpty ( )
23
26
. AddColumnProvider ( DefaultColumnProviders . Instance )
24
27
. AddLogger ( new OutputLogger ( Output ) )
You can’t perform that action at this time.
0 commit comments