From 294cef49012b7b0af13889fa66b3303fe678f559 Mon Sep 17 00:00:00 2001 From: baude Date: Thu, 14 Nov 2019 12:58:16 -0600 Subject: use pause image for check all the pull all tags test can frequently timeout when trying to pull all alpine tags. using the pause image, which is smaller, should provide some relief. Signed-off-by: baude --- test/e2e/pull_test.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'test/e2e/pull_test.go') diff --git a/test/e2e/pull_test.go b/test/e2e/pull_test.go index eee0b131b..96340ef30 100644 --- a/test/e2e/pull_test.go +++ b/test/e2e/pull_test.go @@ -339,7 +339,7 @@ var _ = Describe("Podman pull", func() { }) It("podman pull check all tags", func() { - session := podmanTest.PodmanNoCache([]string{"pull", "--all-tags", "alpine"}) + session := podmanTest.PodmanNoCache([]string{"pull", "--all-tags", "k8s.gcr.io/pause"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) Expect(session.LineInOuputStartsWith("Pulled Images:")).To(BeTrue()) @@ -348,10 +348,6 @@ var _ = Describe("Podman pull", func() { session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) Expect(len(session.OutputToStringArray())).To(BeNumerically(">", 4)) - - rmi := podmanTest.PodmanNoCache([]string{"rmi", "-a", "-f"}) - rmi.WaitWithDefaultTimeout() - Expect(rmi.ExitCode()).To(Equal(0)) }) It("podman pull from docker with nonexist --authfile", func() { -- cgit v1.2.3-54-g00ecf