diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-01-15 07:49:55 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-15 07:49:55 -0800 |
commit | 077156d45cfea915cc249e92a5a45280e5ed71e1 (patch) | |
tree | 10dcf43431d1830c2d9c43bc33f46317ba5bf7c7 /test/e2e/rmi_test.go | |
parent | 500fb2ca4c23288f5086d0ceede7166d3d376c1f (diff) | |
parent | f9f72823ad5f773ee50b9e438c922a9cf0f3edcb (diff) | |
download | podman-077156d45cfea915cc249e92a5a45280e5ed71e1.tar.gz podman-077156d45cfea915cc249e92a5a45280e5ed71e1.tar.bz2 podman-077156d45cfea915cc249e92a5a45280e5ed71e1.zip |
Merge pull request #2156 from baude/remotermi
podman remote client -- add rmi
Diffstat (limited to 'test/e2e/rmi_test.go')
-rw-r--r-- | test/e2e/rmi_test.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/e2e/rmi_test.go b/test/e2e/rmi_test.go index 81895f439..c160e1bc5 100644 --- a/test/e2e/rmi_test.go +++ b/test/e2e/rmi_test.go @@ -1,5 +1,3 @@ -// +build !remoteclient - package integration import ( @@ -113,6 +111,7 @@ var _ = Describe("Podman rmi", func() { }) It("podman rmi image that is a parent of another image", func() { + SkipIfRemote() session := podmanTest.Podman([]string{"rmi", "-fa"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -150,6 +149,7 @@ var _ = Describe("Podman rmi", func() { }) It("podman rmi image that is created from another named imaged", func() { + SkipIfRemote() session := podmanTest.Podman([]string{"rmi", "-fa"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -185,6 +185,7 @@ var _ = Describe("Podman rmi", func() { }) It("podman rmi with cached images", func() { + SkipIfRemote() session := podmanTest.Podman([]string{"rmi", "-fa"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -254,6 +255,7 @@ var _ = Describe("Podman rmi", func() { }) It("podman rmi -a with parent|child images", func() { + SkipIfRemote() dockerfile := `FROM docker.io/library/alpine:latest AS base RUN touch /1 ENV LOCAL=/1 |