From 2b0ea782be84655f9d6320b591efcb6dc1a38177 Mon Sep 17 00:00:00 2001 From: Justin Kotalik Date: Tue, 6 Nov 2018 23:42:47 -0800 Subject: [PATCH] Disable IISExpress tests (#877) --- test/MusicStore.E2ETests/PublishAndRunTests.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/MusicStore.E2ETests/PublishAndRunTests.cs b/test/MusicStore.E2ETests/PublishAndRunTests.cs index 1625293..d38acdd 100644 --- a/test/MusicStore.E2ETests/PublishAndRunTests.cs +++ b/test/MusicStore.E2ETests/PublishAndRunTests.cs @@ -14,8 +14,9 @@ namespace E2ETests [Trait("E2Etests", "PublishAndRun")] public class PublishAndRunTests : LoggedTest { + // ANCM tests disabled, see: https://github.com/aspnet/websdk/issues/422 public static TestMatrix TestVariants - => TestMatrix.ForServers(ServerType.IISExpress, ServerType.Kestrel, ServerType.HttpSys) + => TestMatrix.ForServers(ServerType.Kestrel, ServerType.HttpSys) .WithTfms(Tfm.NetCoreApp30) .WithAllApplicationTypes() .WithAllAncmVersions() @@ -24,7 +25,7 @@ namespace E2ETests // ANCM In-process cannot run on netcoreapp2.1 and below public static TestMatrix TestVariantsWithoutInproc - => TestMatrix.ForServers(ServerType.IISExpress, ServerType.Kestrel, ServerType.HttpSys) + => TestMatrix.ForServers(ServerType.Kestrel, ServerType.HttpSys) .WithTfms(Tfm.NetCoreApp30) .WithAllApplicationTypes() .WithAllAncmVersions()