diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-06-03 20:58:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-03 20:58:13 +0200 |
commit | e41162076a2668fa93c61dadaf72d285590c4c6e (patch) | |
tree | 573d5d0832cd316eedadb68748b936fe27ef428c /test/e2e/commit_test.go | |
parent | 7c465d4d9738f25546d61b915d63bf8fff0ed14d (diff) | |
parent | 2df462024bc59fcf117e3c68bd94b667aa0cecd0 (diff) | |
download | podman-e41162076a2668fa93c61dadaf72d285590c4c6e.tar.gz podman-e41162076a2668fa93c61dadaf72d285590c4c6e.tar.bz2 podman-e41162076a2668fa93c61dadaf72d285590c4c6e.zip |
Merge pull request #3081 from baude/remotecommit
podman remote-client commit
Diffstat (limited to 'test/e2e/commit_test.go')
-rw-r--r-- | test/e2e/commit_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/e2e/commit_test.go b/test/e2e/commit_test.go index 50577fdfb..e9d274649 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)) |