We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcda33a commit 72fce9aCopy full SHA for 72fce9a
tests/BenchmarkDotNet.IntegrationTests/MemoryDiagnoserTests.cs
@@ -67,6 +67,9 @@ public void MemoryDiagnoserIsAccurate(IToolchain toolchain)
67
[FactDotNetCoreOnly("We don't want to test NativeAOT twice (for .NET Framework 4.6.1 and .NET 6.0)")]
68
public void MemoryDiagnoserSupportsNativeAOT()
69
{
70
+ if (ContinuousIntegration.IsAppVeyorOnWindows()) // too time consuming for AppVeyor (1h limit)
71
+ return;
72
+
73
MemoryDiagnoserIsAccurate(
74
NativeAotToolchain.CreateBuilder()
75
.UseNuGet(
0 commit comments