From f4ea4033a35469499cc310c16f3671e36f5bd865 Mon Sep 17 00:00:00 2001 From: Justin Kotalik Date: Thu, 4 Jan 2018 14:16:21 -0800 Subject: [PATCH] Disabling tests while investigating ANCM responding with 400 status code. (#837) --- test/MusicStore.E2ETests/NtlmAuthentationTest.cs | 6 +++--- test/MusicStore.E2ETests/SmokeTests_X64.cs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/MusicStore.E2ETests/NtlmAuthentationTest.cs b/test/MusicStore.E2ETests/NtlmAuthentationTest.cs index 99e0b3d63c..28b94ecddd 100644 --- a/test/MusicStore.E2ETests/NtlmAuthentationTest.cs +++ b/test/MusicStore.E2ETests/NtlmAuthentationTest.cs @@ -33,13 +33,13 @@ namespace E2ETests return NtlmAuthenticationTest(ServerType.WebListener, RuntimeFlavor.CoreClr, ApplicationType.Standalone); } - [ConditionalFact] + [ConditionalFact(Skip = "https://github.com/aspnet/MusicStore/issues/830")] public Task NtlmAuthenticationTest_IISExpress_CoreCLR_Portable() { return NtlmAuthenticationTest(ServerType.IISExpress, RuntimeFlavor.CoreClr, ApplicationType.Portable); } - [ConditionalFact] + [ConditionalFact(Skip = "https://github.com/aspnet/MusicStore/issues/830")] public Task NtlmAuthenticationTest_IISExpress_CoreCLR_Standalone() { return NtlmAuthenticationTest(ServerType.IISExpress, RuntimeFlavor.CoreClr, ApplicationType.Standalone); @@ -52,7 +52,7 @@ namespace E2ETests return NtlmAuthenticationTest(ServerType.WebListener, RuntimeFlavor.Clr, ApplicationType.Portable); } - [ConditionalFact] + [ConditionalFact(Skip = "https://github.com/aspnet/MusicStore/issues/830")] public Task NtlmAuthenticationTest_IISExpress_CLR() { return NtlmAuthenticationTest(ServerType.IISExpress, RuntimeFlavor.Clr, ApplicationType.Standalone); diff --git a/test/MusicStore.E2ETests/SmokeTests_X64.cs b/test/MusicStore.E2ETests/SmokeTests_X64.cs index 57a5448530..7665602a15 100644 --- a/test/MusicStore.E2ETests/SmokeTests_X64.cs +++ b/test/MusicStore.E2ETests/SmokeTests_X64.cs @@ -40,7 +40,7 @@ namespace E2ETests return _smokeTestRunner.SmokeTestSuite(ServerType.WebListener, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64, ApplicationType.Standalone); } - [ConditionalFact] + [ConditionalFact(Skip = "https://github.com/aspnet/MusicStore/issues/830")] [OSSkipCondition(OperatingSystems.Linux)] [OSSkipCondition(OperatingSystems.MacOSX)] public Task SmokeTests_X64_IISExpress_Clr() @@ -56,7 +56,7 @@ namespace E2ETests return _smokeTestRunner.SmokeTestSuite(ServerType.IISExpress, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64, ApplicationType.Portable); } - [ConditionalFact] + [ConditionalFact(Skip = "https://github.com/aspnet/MusicStore/issues/830")] [OSSkipCondition(OperatingSystems.Linux)] [OSSkipCondition(OperatingSystems.MacOSX)] public Task SmokeTests_X64_IISExpress_CoreClr_Standalone()