chore(cli): skip support bundle test on windows (#12596)

This commit is contained in:
Cian Johnston
2024-03-14 15:25:09 +00:00
committed by GitHub
parent 5dd436c19b
commit 135381bb4e
+4
View File
@@ -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()