We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d6c71f commit 771dabfCopy full SHA for 771dabf
gopls/internal/regtest/misc/vendor_test.go
@@ -5,6 +5,7 @@
5
package misc
6
7
import (
8
+ "runtime"
9
"testing"
10
11
. "golang.org/x/tools/internal/lsp/regtest"
@@ -26,6 +27,9 @@ var Goodbye error
26
27
28
func TestInconsistentVendoring(t *testing.T) {
29
testenv.NeedsGo1Point(t, 14)
30
+ if runtime.GOOS == "windows" {
31
+ t.Skipf("skipping test due to flakiness on Windows: https://golang.org/issue/49646")
32
+ }
33
34
const pkgThatUsesVendoring = `
35
-- go.mod --
0 commit comments