Make IIS functional test run on helix(#9484)

This commit is contained in:
Justin Kotalik 2019-04-23 14:22:28 -07:00 committed by GitHub
parent 76559df78b
commit 3fbf3ac791
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -178,7 +178,7 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests
}
[ConditionalFact]
[Flaky("https://github.com/aspnet/AspNetCore-Internal/issues/1831", FlakyOn.All)]
[Repeat(100)]
public async Task ReaderThrowsCancelledException()
{
var requestStartedCompletionSource = CreateTaskCompletionSource();

View File

@ -5,8 +5,11 @@
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<InProcessTestSite>true</InProcessTestSite>
<IsIISTest>true</IsIISTest>
</PropertyGroup>
<Import Project="../FunctionalTest.props" />
<ItemGroup>
<ProjectReference Include="..\Common.Tests\Common.Tests.csproj" />
<ProjectReference Include="$(RepositoryRoot)src\Hosting\Server.IntegrationTesting\src\Microsoft.AspNetCore.Server.IntegrationTesting.csproj" />