Skip to content

Commit

Permalink
Skip TestTLSConfig for now (spiffe#4327)
Browse files Browse the repository at this point in the history
Signed-off-by: Agustín Martínez Fayó <amartinezfayo@gmail.com>
Signed-off-by: Neniel <11655196+Neniel@users.noreply.github.com>
  • Loading branch information
amartinezfayo authored and Neniel committed Jul 21, 2023
1 parent 2c775df commit 4e5a588
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions support/oidc-discovery-provider/cert_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"os"
"path/filepath"
"reflect"
"runtime"
"strings"
"testing"
"time"
Expand All @@ -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)
Expand Down

0 comments on commit 4e5a588

Please sign in to comment.