Skip unreliable tests

These tests are failing in unpredictable ways on the CI. Skipping these
to avoid noise until we can investigate.
This commit is contained in:
Ryan Nowak 2021-03-26 14:37:43 -07:00
parent 1e23165d1c
commit 51e0584110
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ namespace Dapr.Actors.Test
{
public class ApiTokenTests
{
[Fact]
[Fact(Skip = "https://github.com/dapr/dotnet-sdk/issues/596")]
public async Task CreateProxyWithRemoting_WithApiToken()
{
await using var client = TestClient.CreateForMessageHandler();
@ -38,7 +38,7 @@ namespace Dapr.Actors.Test
headerValues.Should().Contain("test_token");
}
[Fact]
[Fact(Skip = "https://github.com/dapr/dotnet-sdk/issues/596")]
public async Task CreateProxyWithRemoting_WithNoApiToken()
{
await using var client = TestClient.CreateForMessageHandler();