Skip to content

Commit

Permalink
Disabling tests while investigating file location issues (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotalik authored Nov 13, 2017
1 parent b8c1180 commit 6294d38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions test/MusicStore.E2ETests/NtlmAuthentationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public Task NtlmAuthenticationTest_WebListener_CoreCLR_Portable()
return NtlmAuthenticationTest(ServerType.WebListener, RuntimeFlavor.CoreClr, ApplicationType.Portable);
}

[ConditionalFact]
[ConditionalFact (Skip = "https://github.com/aspnet/MusicStore/issues/830") ]
public Task NtlmAuthenticationTest_WebListener_CoreCLR_Standalone()
{
return NtlmAuthenticationTest(ServerType.WebListener, RuntimeFlavor.CoreClr, ApplicationType.Standalone);
Expand All @@ -39,7 +39,7 @@ 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);
Expand All @@ -51,7 +51,7 @@ public Task NtlmAuthenticationTest_WebListener_CLR()
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);
Expand Down
4 changes: 2 additions & 2 deletions test/MusicStore.E2ETests/SmokeTests_X64.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public Task SmokeTests_X64_WebListener_CoreClr_Standalone()
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()
Expand All @@ -56,7 +56,7 @@ public Task SmokeTests_X64_IISExpress_CoreClr_Portable()
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()
Expand Down

0 comments on commit 6294d38

Please sign in to comment.