Disabling tests while investigating file location issues (#831)
This commit is contained in:
parent
b8c1180564
commit
6294d38805
|
|
@ -27,7 +27,7 @@ namespace E2ETests
|
||||||
return NtlmAuthenticationTest(ServerType.WebListener, RuntimeFlavor.CoreClr, ApplicationType.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()
|
public Task NtlmAuthenticationTest_WebListener_CoreCLR_Standalone()
|
||||||
{
|
{
|
||||||
return NtlmAuthenticationTest(ServerType.WebListener, RuntimeFlavor.CoreClr, ApplicationType.Standalone);
|
return NtlmAuthenticationTest(ServerType.WebListener, RuntimeFlavor.CoreClr, ApplicationType.Standalone);
|
||||||
|
|
@ -39,7 +39,7 @@ namespace E2ETests
|
||||||
return NtlmAuthenticationTest(ServerType.IISExpress, RuntimeFlavor.CoreClr, ApplicationType.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()
|
public Task NtlmAuthenticationTest_IISExpress_CoreCLR_Standalone()
|
||||||
{
|
{
|
||||||
return NtlmAuthenticationTest(ServerType.IISExpress, RuntimeFlavor.CoreClr, ApplicationType.Standalone);
|
return NtlmAuthenticationTest(ServerType.IISExpress, RuntimeFlavor.CoreClr, ApplicationType.Standalone);
|
||||||
|
|
@ -51,7 +51,7 @@ namespace E2ETests
|
||||||
return NtlmAuthenticationTest(ServerType.WebListener, RuntimeFlavor.Clr, ApplicationType.Portable);
|
return NtlmAuthenticationTest(ServerType.WebListener, RuntimeFlavor.Clr, ApplicationType.Portable);
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalFact]
|
[ConditionalFact(Skip = "https://github.com/aspnet/MusicStore/issues/830")]
|
||||||
public Task NtlmAuthenticationTest_IISExpress_CLR()
|
public Task NtlmAuthenticationTest_IISExpress_CLR()
|
||||||
{
|
{
|
||||||
return NtlmAuthenticationTest(ServerType.IISExpress, RuntimeFlavor.Clr, ApplicationType.Standalone);
|
return NtlmAuthenticationTest(ServerType.IISExpress, RuntimeFlavor.Clr, ApplicationType.Standalone);
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ namespace E2ETests
|
||||||
return _smokeTestRunner.SmokeTestSuite(ServerType.WebListener, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64, ApplicationType.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.Linux)]
|
||||||
[OSSkipCondition(OperatingSystems.MacOSX)]
|
[OSSkipCondition(OperatingSystems.MacOSX)]
|
||||||
public Task SmokeTests_X64_IISExpress_Clr()
|
public Task SmokeTests_X64_IISExpress_Clr()
|
||||||
|
|
@ -56,7 +56,7 @@ namespace E2ETests
|
||||||
return _smokeTestRunner.SmokeTestSuite(ServerType.IISExpress, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64, ApplicationType.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.Linux)]
|
||||||
[OSSkipCondition(OperatingSystems.MacOSX)]
|
[OSSkipCondition(OperatingSystems.MacOSX)]
|
||||||
public Task SmokeTests_X64_IISExpress_CoreClr_Standalone()
|
public Task SmokeTests_X64_IISExpress_CoreClr_Standalone()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue