Temporarily skip NanoServer's IIS tests

This commit is contained in:
Kiran Challa 2017-05-31 07:46:00 -07:00
parent fcb96242a7
commit 249c39e803
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ namespace E2ETests
[SkipIfEnvironmentVariableNotEnabled("RUN_TESTS_ON_NANO")]
[InlineData(ServerType.Kestrel, 5000, ApplicationType.Standalone)]
[InlineData(ServerType.WebListener, 5000, ApplicationType.Standalone)]
[InlineData(ServerType.IIS, 8080, ApplicationType.Standalone)]
[InlineData(ServerType.IIS, 8080, ApplicationType.Standalone, Skip = "https://github.com/aspnet/MusicStore/issues/796")]
public async Task Test(ServerType serverType, int portToListen, ApplicationType applicationType)
{
var applicationBaseUrl = $"http://{_remoteDeploymentConfig.ServerName}:{portToListen}/";
@ -63,7 +63,7 @@ namespace E2ETests
[SkipIfEnvironmentVariableNotEnabled("RUN_TESTS_ON_NANO")]
[InlineData(ServerType.Kestrel, 5000, ApplicationType.Portable)]
[InlineData(ServerType.WebListener, 5000, ApplicationType.Portable)]
[InlineData(ServerType.IIS, 8080, ApplicationType.Portable)]
[InlineData(ServerType.IIS, 8080, ApplicationType.Portable, Skip = "https://github.com/aspnet/MusicStore/issues/796")]
public async Task Test(ServerType serverType, int portToListen, ApplicationType applicationType)
{
var applicationBaseUrl = $"http://{_remoteDeploymentConfig.ServerName}:{portToListen}/";