From 2df462024bc59fcf117e3c68bd94b667aa0cecd0 Mon Sep 17 00:00:00 2001 From: baude Date: Thu, 25 Apr 2019 13:58:25 -0500 Subject: podman remote-client commit add the ability to commit a container to an image using the remote client. Signed-off-by: baude --- test/e2e/commit_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/e2e/commit_test.go b/test/e2e/commit_test.go index bf20ac999..99920d4a5 100644 --- a/test/e2e/commit_test.go +++ b/test/e2e/commit_test.go @@ -1,5 +1,3 @@ -// +build !remoteclient - package integration import ( @@ -174,6 +172,9 @@ var _ = Describe("Podman commit", func() { }) It("podman commit with volume mounts and --include-volumes", func() { + // We need to figure out how volumes are going to work correctly with the remote + // client. This does not currently work. + SkipIfRemote() s := podmanTest.Podman([]string{"run", "--name", "test1", "-v", "/tmp:/foo", "alpine", "date"}) s.WaitWithDefaultTimeout() Expect(s.ExitCode()).To(Equal(0)) -- cgit v1.2.3-54-g00ecf