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 eec9a89 commit d278f09Copy full SHA for d278f09
src/cmd/go/script_test.go
@@ -42,6 +42,10 @@ func TestScript(t *testing.T) {
42
file := file
43
name := strings.TrimSuffix(filepath.Base(file), ".txt")
44
t.Run(name, func(t *testing.T) {
45
+ if strings.HasPrefix(name, "mod_") && runtime.GOOS == "windows" {
46
+ // Windows is very unhappy about the module proxy.
47
+ t.Skip("golang.org/issue/26457")
48
+ }
49
t.Parallel()
50
ts := &testScript{t: t, name: name, file: file}
51
ts.setup()
0 commit comments