From f9f72823ad5f773ee50b9e438c922a9cf0f3edcb Mon Sep 17 00:00:00 2001 From: baude Date: Mon, 14 Jan 2019 15:55:00 -0600 Subject: podman remote integrations tests add exists and rmi tests back in ... Signed-off-by: baude --- test/e2e/libpod_suite_remoteclient_test.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test/e2e/libpod_suite_remoteclient_test.go') 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) -- cgit v1.2.3-54-g00ecf