diff options
Diffstat (limited to 'test/e2e/push_test.go')
-rw-r--r-- | test/e2e/push_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/e2e/push_test.go b/test/e2e/push_test.go index f783fe418..b2c55607f 100644 --- a/test/e2e/push_test.go +++ b/test/e2e/push_test.go @@ -2,6 +2,7 @@ package integration import ( "os" + "time" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" @@ -59,6 +60,9 @@ var _ = Describe("Podman push", func() { session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) + // Give the registry 5 seconds to warm up before pushing + time.Sleep(5 * time.Second) + push := podmanTest.Podman([]string{"push", "--tls-verify=false", "--remove-signatures", ALPINE, "localhost:5000/my-alpine"}) push.WaitWithDefaultTimeout() Expect(push.ExitCode()).To(Equal(0)) |