Merge pull request #6880 from kzys/fix-cirrus-ci
Make Cirrus CI tests more stable
This commit is contained in:
commit
91ceda541b
@ -449,6 +449,13 @@ func TestImagePullSchema1(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestImagePullWithConcurrencyLimit(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)
|
client, err := newClient(t, address)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
|
@ -1117,7 +1117,6 @@ func TestContainerKillInitPidHost(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestUserNamespaces(t *testing.T) {
|
func TestUserNamespaces(t *testing.T) {
|
||||||
t.Parallel()
|
|
||||||
t.Run("WritableRootFS", func(t *testing.T) { testUserNamespaces(t, false) })
|
t.Run("WritableRootFS", func(t *testing.T) { testUserNamespaces(t, false) })
|
||||||
// see #1373 and runc#1572
|
// see #1373 and runc#1572
|
||||||
t.Run("ReadonlyRootFS", func(t *testing.T) { testUserNamespaces(t, true) })
|
t.Run("ReadonlyRootFS", func(t *testing.T) { testUserNamespaces(t, true) })
|
||||||
|
Loading…
Reference in New Issue
Block a user