Skip to content

Commit 4d0b1d8

Browse files
committed
Skip test on Windows
1 parent 27d5f40 commit 4d0b1d8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

enterprise/derpmesh/derpmesh_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"errors"
88
"io"
99
"net/http/httptest"
10+
"runtime"
1011
"testing"
1112

1213
"github.com/stretchr/testify/assert"
@@ -101,6 +102,9 @@ func TestDERPMesh(t *testing.T) {
101102
})
102103
t.Run("TwentyMeshes", func(t *testing.T) {
103104
t.Parallel()
105+
if runtime.GOOS == "windows" {
106+
t.Skip("This test is races on Windows... I think because it's too slow.")
107+
}
104108
meshes := make([]*derpmesh.Mesh, 0, 20)
105109
serverURLs := make([]string, 0, 20)
106110
for i := 0; i < 20; i++ {

0 commit comments

Comments
 (0)