Skip to content

Commit

Permalink
Skip unreliable tests
Browse files Browse the repository at this point in the history
These tests are failing in unpredictable ways on the CI. Skipping these
to avoid noise until we can investigate.
  • Loading branch information
rynowak committed Mar 30, 2021
1 parent 1e23165 commit 51e0584
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Dapr.Actors.Test/ApiTokenTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -38,7 +38,7 @@ public async Task CreateProxyWithRemoting_WithApiToken()
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();
Expand Down

0 comments on commit 51e0584

Please sign in to comment.