From 51e058411081aff1d91323e987bb8f0a59548bd0 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Fri, 26 Mar 2021 14:37:43 -0700 Subject: [PATCH] Skip unreliable tests These tests are failing in unpredictable ways on the CI. Skipping these to avoid noise until we can investigate. --- test/Dapr.Actors.Test/ApiTokenTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Dapr.Actors.Test/ApiTokenTests.cs b/test/Dapr.Actors.Test/ApiTokenTests.cs index 382b882ef..78e159ce2 100644 --- a/test/Dapr.Actors.Test/ApiTokenTests.cs +++ b/test/Dapr.Actors.Test/ApiTokenTests.cs @@ -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 @@ 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();