Skip to content

Commit 72fce9a

Browse files
authored
don't run NativeAOT tests on AppVeyor, as one of them takes 3 minutes and we hit the 1h limit (#2023)
1 parent fcda33a commit 72fce9a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/BenchmarkDotNet.IntegrationTests/MemoryDiagnoserTests.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ public void MemoryDiagnoserIsAccurate(IToolchain toolchain)
6767
[FactDotNetCoreOnly("We don't want to test NativeAOT twice (for .NET Framework 4.6.1 and .NET 6.0)")]
6868
public void MemoryDiagnoserSupportsNativeAOT()
6969
{
70+
if (ContinuousIntegration.IsAppVeyorOnWindows()) // too time consuming for AppVeyor (1h limit)
71+
return;
72+
7073
MemoryDiagnoserIsAccurate(
7174
NativeAotToolchain.CreateBuilder()
7275
.UseNuGet(

0 commit comments

Comments
 (0)