Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore(cli): skip support bundle test on windows
  • Loading branch information
johnstcn committed Mar 14, 2024
commit 548abcad194e76e55a7bc9a655540d77496f930e
4 changes: 4 additions & 0 deletions cli/support_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"encoding/json"
"io"
"path/filepath"
"runtime"
"testing"
"time"

Expand All @@ -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()
Expand Down