Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Grpc/test/InteropTests/InteropTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ public InteropTests(ITestOutputHelper output)
public Task EmptyUnary() => InteropTestCase("empty_unary");

[Fact]
[QuarantinedTest]
public Task LargeUnary() => InteropTestCase("large_unary");

[Fact]
[QuarantinedTest]
public Task ClientStreaming() => InteropTestCase("client_streaming");

[Fact]
Expand All @@ -56,6 +58,7 @@ public InteropTests(ITestOutputHelper output)
public Task TimeoutOnSleepingServer() => InteropTestCase("timeout_on_sleeping_server");

[Fact]
[QuarantinedTest]
public Task CustomMetadata() => InteropTestCase("custom_metadata");

[Fact]
Expand All @@ -71,12 +74,14 @@ public InteropTests(ITestOutputHelper output)
public Task UnimplementedMethod() => InteropTestCase("unimplemented_method");

[Fact]
[QuarantinedTest]
public Task ClientCompressedUnary() => InteropTestCase("client_compressed_unary");

[Fact]
public Task ClientCompressedStreaming() => InteropTestCase("client_compressed_streaming");

[Fact]
[QuarantinedTest]
public Task ServerCompressedUnary() => InteropTestCase("server_compressed_unary");

[Fact]
Expand Down
1 change: 1 addition & 0 deletions src/ProjectTemplates/test/WebApiTemplateTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public WebApiTemplateTest(ProjectFactoryFixture factoryFixture, ITestOutputHelpe

[ConditionalFact]
[SkipOnHelix("Cert failures", Queues = "OSX.1014.Amd64;OSX.1014.Amd64.Open")]
[QuarantinedTest]
public async Task WebApiTemplateCSharp() => await WebApiTemplateCore(languageOverride: null);

private async Task WebApiTemplateCore(string languageOverride)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1495,6 +1495,7 @@ public async Task Settings_InitialWindowSize_Client(string scheme)

[Theory]
[MemberData(nameof(SupportedSchemes))]
[QuarantinedTest]
public async Task ConnectionWindowSize_Server(string scheme)
{
var requestFinished = new TaskCompletionSource<int>(TaskCreationOptions.RunContinuationsAsynchronously);
Expand Down
1 change: 1 addition & 0 deletions src/Tools/dotnet-user-secrets/test/SecretManagerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ public void SetSecret_Update_Existing_Secret()
}

[Fact]
[QuarantinedTest]
public void SetSecret_With_Verbose_Flag()
{
string secretId;
Expand Down