From 548abcad194e76e55a7bc9a655540d77496f930e Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Thu, 14 Mar 2024 14:59:22 +0000 Subject: [PATCH] chore(cli): skip support bundle test on windows --- cli/support_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cli/support_test.go b/cli/support_test.go index 66ea44a949b36..b36d17ad7c695 100644 --- a/cli/support_test.go +++ b/cli/support_test.go @@ -5,6 +5,7 @@ import ( "encoding/json" "io" "path/filepath" + "runtime" "testing" "time" @@ -21,6 +22,9 @@ import ( func TestSupportBundle(t *testing.T) { t.Parallel() + if runtime.GOOS == "windows" { + t.Skip("for some reason, windows fails to remove tempdirs sometimes") + } t.Run("Workspace", func(t *testing.T) { t.Parallel()