Re-enable IISIntegration tests (#4377)
This commit is contained in:
parent
5c1fbe1af7
commit
2e56f056d0
|
|
@ -43,6 +43,11 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
||||||
{
|
{
|
||||||
parameters += $" --runtime {GetRuntimeIdentifier(deploymentParameters)}";
|
parameters += $" --runtime {GetRuntimeIdentifier(deploymentParameters)}";
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Workaround for https://github.com/aspnet/websdk/issues/422
|
||||||
|
parameters += " -p:UseAppHost=false";
|
||||||
|
}
|
||||||
|
|
||||||
parameters += $" {deploymentParameters.AdditionalPublishParameters}";
|
parameters += $" {deploymentParameters.AdditionalPublishParameters}";
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,6 @@
|
||||||
<ExcludeFromTest Include="$(RepositoryRoot)test\TestSites\*.csproj" />
|
<ExcludeFromTest Include="$(RepositoryRoot)test\TestSites\*.csproj" />
|
||||||
<ExcludeFromTest Include="$(RepositoryRoot)test\IISTestSite\*.csproj" />
|
<ExcludeFromTest Include="$(RepositoryRoot)test\IISTestSite\*.csproj" />
|
||||||
<ExcludeSolutions Include="$(RepositoryRoot)IISIntegration.NoV1.sln" />
|
<ExcludeSolutions Include="$(RepositoryRoot)IISIntegration.NoV1.sln" />
|
||||||
<ExcludeFromTest Include="$(RepositoryRoot)test\**\*.csproj" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(SkipIISTests)' == 'true'" >
|
<ItemGroup Condition="'$(SkipIISTests)' == 'true'" >
|
||||||
|
|
|
||||||
|
|
@ -121,7 +121,7 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests
|
||||||
await StartAsync(deploymentParameters);
|
await StartAsync(deploymentParameters);
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalFact]
|
[ConditionalFact(Skip="https://github.com/aspnet/AspNetCore/issues/3950")]
|
||||||
[RequiresIIS(IISCapability.PoolEnvironmentVariables)]
|
[RequiresIIS(IISCapability.PoolEnvironmentVariables)]
|
||||||
public async Task StartsWithPortableAndBootstraperExe()
|
public async Task StartsWithPortableAndBootstraperExe()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue