From b30a56c15613428c80033b97e81db7d3d8ed84e6 Mon Sep 17 00:00:00 2001 From: baude Date: Mon, 14 Jan 2019 13:23:13 -0600 Subject: Run integrations test with remote-client Add the ability to run the integration (ginkgo) suite using the remote client. Only the images_test.go file is run right now; all the rest are isolated with a // +build !remotelinux. As more content is developed for the remote client, we can unblock the files and just block single tests as needed. Signed-off-by: baude --- test/e2e/exists_test.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/e2e/exists_test.go') diff --git a/test/e2e/exists_test.go b/test/e2e/exists_test.go index d9652de4b..b5c91cc8d 100644 --- a/test/e2e/exists_test.go +++ b/test/e2e/exists_test.go @@ -1,3 +1,5 @@ +// +build !remoteclient + package integration import ( @@ -32,6 +34,7 @@ var _ = Describe("Podman image|container exists", func() { GinkgoWriter.Write([]byte(timedResult)) }) + It("podman image exists in local storage by fq name", func() { session := podmanTest.Podman([]string{"image", "exists", ALPINE}) session.WaitWithDefaultTimeout() -- cgit v1.2.3-54-g00ecf