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/libpod_suite_remoteclient_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/libpod_suite_remoteclient_test.go')
-rw-r--r-- | test/e2e/libpod_suite_remoteclient_test.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/e2e/libpod_suite_remoteclient_test.go b/test/e2e/libpod_suite_remoteclient_test.go index 211fc1ebc..cad4401f8 100644 --- a/test/e2e/libpod_suite_remoteclient_test.go +++ b/test/e2e/libpod_suite_remoteclient_test.go @@ -6,6 +6,7 @@ import ( "fmt" "github.com/containers/libpod/libpod" "github.com/containers/libpod/pkg/inspect" + "github.com/onsi/ginkgo" "io/ioutil" "os" "os/exec" @@ -13,13 +14,16 @@ import ( "strings" ) +func SkipIfRemote() { + ginkgo.Skip("This function is not enabled for remote podman") +} + // Cleanup cleans up the temporary store func (p *PodmanTestIntegration) Cleanup() { p.StopVarlink() // TODO // Stop all containers // Rm all containers - // Rm all images if err := os.RemoveAll(p.TempDir); err != nil { fmt.Printf("%q\n", err) |