diff --git a/integration/client/client_test.go b/integration/client/client_test.go index bfb026b79..15ebbbdc0 100644 --- a/integration/client/client_test.go +++ b/integration/client/client_test.go @@ -449,6 +449,13 @@ func TestImagePullSchema1(t *testing.T) { } func TestImagePullWithConcurrencyLimit(t *testing.T) { + if os.Getenv("CIRRUS_CI") != "" { + // This test tends to fail under Cirrus CI + Vagrant due to "connection reset by peer" from + // pkg-containers.githubusercontent.com. + // Does GitHub throttle requests from Cirrus CI more compared to GitHub Actions? + t.Skip("unstable under Cirrus CI") + } + client, err := newClient(t, address) if err != nil { t.Fatal(err)