diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-05-20 21:05:32 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-05-21 09:28:42 -0400 |
commit | 9add1abd12bbadef3dac778a72072fae3cb9c08b (patch) | |
tree | 05568d1e084696166849d7a007d4a5379910880b /test/e2e/images_test.go | |
parent | a4c8198afd2b92b40b95c6fe01756cf2d0076cb6 (diff) | |
download | podman-9add1abd12bbadef3dac778a72072fae3cb9c08b.tar.gz podman-9add1abd12bbadef3dac778a72072fae3cb9c08b.tar.bz2 podman-9add1abd12bbadef3dac778a72072fae3cb9c08b.zip |
Handle filters correctly for podman prune
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/e2e/images_test.go')
-rw-r--r-- | test/e2e/images_test.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/e2e/images_test.go b/test/e2e/images_test.go index 118566ea3..1715cf8c1 100644 --- a/test/e2e/images_test.go +++ b/test/e2e/images_test.go @@ -131,6 +131,7 @@ var _ = Describe("Podman images", func() { }) It("podman images filter by image name", func() { + Skip(v2remotefail) podmanTest.RestoreAllArtifacts() session := podmanTest.PodmanNoCache([]string{"images", "-q", ALPINE}) session.WaitWithDefaultTimeout() @@ -233,6 +234,9 @@ RUN apk update && apk add man }) It("podman check for image with sha256: prefix", func() { + if podmanTest.RemoteTest { + Skip("Does not work on remote client") + } session := podmanTest.Podman([]string{"inspect", "--format=json", ALPINE}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) @@ -245,6 +249,9 @@ RUN apk update && apk add man }) It("podman check for image with sha256: prefix", func() { + if podmanTest.RemoteTest { + Skip("Does not work on remote client") + } session := podmanTest.Podman([]string{"image", "inspect", "--format=json", ALPINE}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) |