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 7e03ece commit d52da6dCopy full SHA for d52da6d
internal/testenv/testenv.go
@@ -258,6 +258,10 @@ func ExitIfSmallMachine() {
258
// and there is only one of each. We shouldn't waste those scarce resources
259
// running very slow tests.
260
fmt.Fprintf(os.Stderr, "skipping test: %s builder is very slow\n", b)
261
+ case "dragonfly-amd64":
262
+ // As of 2021-11-02, this builder is running with GO_TEST_TIMEOUT_SCALE=2,
263
+ // and seems to have unusually slow disk performance.
264
+ fmt.Fprintln(os.Stderr, "skipping test: dragonfly-amd64 has slow disk (https://golang.org/issue/45216)")
265
default:
266
return
267
}
0 commit comments