Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Commit

Permalink
Skip TestKeepAliveTimeout due to frequent failures on Win7 (#1817)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeharder authored May 8, 2017
1 parent a9c165e commit a7acd4d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
using Microsoft.AspNetCore.Http.Features;
using Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure;
using Microsoft.AspNetCore.Testing;
using Microsoft.AspNetCore.Testing.xunit;
using Xunit;

namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
Expand All @@ -19,7 +20,8 @@ public class KeepAliveTimeoutTests
private static readonly TimeSpan LongDelay = TimeSpan.FromSeconds(30);
private static readonly TimeSpan ShortDelay = TimeSpan.FromSeconds(LongDelay.TotalSeconds / 10);

[Fact]
[ConditionalFact]
[OSSkipCondition(OperatingSystems.Windows, WindowsVersions.Win7, SkipReason = "https://github.com/aspnet/KestrelHttpServer/issues/1684")]
public Task TestKeepAliveTimeout()
{
// Delays in these tests cannot be much longer than expected.
Expand Down

0 comments on commit a7acd4d

Please sign in to comment.