Skip to content

Commit 101a588

Browse files
committed
chore: Update build timeout
1 parent f718fb3 commit 101a588

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/BenchmarkDotNet.IntegrationTests/BenchmarkTestExecutor.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ protected IConfig CreateSimpleConfig(OutputLogger? logger = null, Job? job = nul
9696
return baseConfig
9797
.AddLogger(logger ?? (Output != null ? new OutputLogger(Output) : ConsoleLogger.Default))
9898
.AddColumnProvider(DefaultColumnProviders.Instance)
99-
.AddAnalyser(DefaultConfig.Instance.GetAnalysers().ToArray());
99+
.AddAnalyser(DefaultConfig.Instance.GetAnalysers().ToArray())
100+
.WithBuildTimeout(TimeSpan.FromSeconds(240));
100101
}
101102

102103
protected static IReadOnlyList<string> GetSingleStandardOutput(Summary summary)

0 commit comments

Comments
 (0)