From 4e5a58879f9c3cf17ae65b257b9f01ca016dba60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Mart=C3=ADnez=20Fay=C3=B3?= Date: Fri, 7 Jul 2023 16:09:37 -0300 Subject: [PATCH] Skip TestTLSConfig for now (#4327) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Agustín Martínez Fayó Signed-off-by: Neniel <11655196+Neniel@users.noreply.github.com> --- support/oidc-discovery-provider/cert_manager_test.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/support/oidc-discovery-provider/cert_manager_test.go b/support/oidc-discovery-provider/cert_manager_test.go index 767e9a85182..14841a2148c 100644 --- a/support/oidc-discovery-provider/cert_manager_test.go +++ b/support/oidc-discovery-provider/cert_manager_test.go @@ -11,6 +11,7 @@ import ( "os" "path/filepath" "reflect" + "runtime" "strings" "testing" "time" @@ -29,6 +30,11 @@ var ( ) func TestTLSConfig(t *testing.T) { + if runtime.GOOS == "windows" { + // Skip this test on Windows for now + // https://github.com/spiffe/spire/issues/4324 + t.Skip() + } logger, logHook := test.NewNullLogger() clk := clock.NewMock(t)