Skip to content

Commit

Permalink
don't run Long Running Test on AppVeyor, try to avoid 1h timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
adamsitnik committed Dec 15, 2022
1 parent 2cce425 commit a6ef739
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,9 @@ public void WhenJobIsDefinedViaAttributeAndArgumentsDontContainJobArgumentOnlySi
[Fact]
public void JobNotDefinedButStillBenchmarkIsExecuted()
{
if (ContinuousIntegration.IsAppVeyorOnWindows())
return; // timeouts

var types = new[] { typeof(JustBenchmark) };
var switcher = new BenchmarkSwitcher(types);
MockExporter mockExporter = new MockExporter();
Expand Down
3 changes: 3 additions & 0 deletions tests/BenchmarkDotNet.IntegrationTests/RunStrategyTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ public RunStrategyTests(ITestOutputHelper output) : base(output) { }
[Fact]
public void RunStrategiesAreSupported()
{
if (ContinuousIntegration.IsAppVeyorOnWindows())
return; // timeouts

var config = ManualConfig.CreateEmpty()
.AddColumnProvider(DefaultColumnProviders.Instance)
.AddLogger(new OutputLogger(Output))
Expand Down

0 comments on commit a6ef739

Please sign in to comment.