Unquarantine tests that have passed for 30+ days (#23011)

This commit is contained in:
Safia Abdalla 2020-06-16 16:23:50 -07:00 committed by GitHub
parent ff4cea0820
commit 51f977db2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 8 deletions

View File

@ -499,7 +499,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
}
[Theory]
[QuarantinedTest]
[MemberData(nameof(ConnectionMiddlewareData))]
public async Task ConnectionClosedTokenFiresOnClientFIN(ListenOptions listenOptions)
{

View File

@ -32,7 +32,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
private CommandContext MakeCommandContext() => new CommandContext(null, new TestReporter(_output), _console);
[Fact]
[QuarantinedTest]
public void AddsSecretIdToProject()
{
var projectDir = _fixture.CreateProject(null);
@ -45,7 +44,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
}
[Fact]
[QuarantinedTest]
public void AddsSpecificSecretIdToProject()
{
const string SecretId = "TestSecretId";
@ -60,7 +58,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
}
[Fact]
[QuarantinedTest]
public void AddsEscapedSpecificSecretIdToProject()
{
const string SecretId = @"<lots of XML invalid values>&";
@ -75,7 +72,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
}
[Fact]
[QuarantinedTest]
public void DoesNotGenerateIdForProjectWithSecretId()
{
const string SecretId = "AlreadyExists";
@ -118,7 +114,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
}
[Fact]
[QuarantinedTest]
public void OverridesIdForProjectWithSecretId()
{
const string SecretId = "AlreadyExists";

View File

@ -82,7 +82,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
[Theory]
[InlineData(true)]
[InlineData(false)]
[QuarantinedTest]
public void SetSecrets(bool fromCurrentDirectory)
{
var secrets = new KeyValuePair<string, string>[]
@ -271,7 +270,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
[Theory]
[InlineData(true)]
[InlineData(false)]
[QuarantinedTest]
public void Clear_Secrets(bool fromCurrentDirectory)
{
var projectPath = _fixture.GetTempSecretProject();