Skip to content

Commit a6ef739

Browse files
committed
don't run Long Running Test on AppVeyor, try to avoid 1h timeouts
1 parent 2cce425 commit a6ef739

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

tests/BenchmarkDotNet.IntegrationTests/BenchmarkSwitcherTest.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,9 @@ public void WhenJobIsDefinedViaAttributeAndArgumentsDontContainJobArgumentOnlySi
289289
[Fact]
290290
public void JobNotDefinedButStillBenchmarkIsExecuted()
291291
{
292+
if (ContinuousIntegration.IsAppVeyorOnWindows())
293+
return; // timeouts
294+
292295
var types = new[] { typeof(JustBenchmark) };
293296
var switcher = new BenchmarkSwitcher(types);
294297
MockExporter mockExporter = new MockExporter();

tests/BenchmarkDotNet.IntegrationTests/RunStrategyTests.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ public RunStrategyTests(ITestOutputHelper output) : base(output) { }
1919
[Fact]
2020
public void RunStrategiesAreSupported()
2121
{
22+
if (ContinuousIntegration.IsAppVeyorOnWindows())
23+
return; // timeouts
24+
2225
var config = ManualConfig.CreateEmpty()
2326
.AddColumnProvider(DefaultColumnProviders.Instance)
2427
.AddLogger(new OutputLogger(Output))

0 commit comments

Comments
 (0)