mirror of
https://github.com/coder/coder.git
synced 2025-07-18 14:17:22 +00:00
chore(cli): skip support bundle test on windows (#12596)
This commit is contained in:
@ -5,6 +5,7 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"io"
|
"io"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"runtime"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -21,6 +22,9 @@ import (
|
|||||||
|
|
||||||
func TestSupportBundle(t *testing.T) {
|
func TestSupportBundle(t *testing.T) {
|
||||||
t.Parallel()
|
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.Run("Workspace", func(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
|
Reference in New Issue
Block a user