Merge pull request #2332 from baude/remotevolumeprune

volume prune
This commit is contained in:
OpenShift Merge Robot
2019-02-14 22:52:03 +01:00
committed by GitHub
14 changed files with 101 additions and 52 deletions

View File

@@ -1,5 +1,3 @@
// +build !remoteclient
package integration
import (

View File

@@ -1,5 +1,3 @@
// +build !remoteclient
package integration
import (

View File

@@ -1,5 +1,3 @@
// +build !remoteclient
package integration
import (

View File

@@ -1,5 +1,3 @@
// +build !remoteclient
package integration
import (
@@ -50,6 +48,7 @@ var _ = Describe("Podman volume rm", func() {
})
It("podman rm with --force flag", func() {
SkipIfRemote()
session := podmanTest.Podman([]string{"create", "-v", "myvol:/myvol", ALPINE, "ls"})
cid := session.OutputToString()
session.WaitWithDefaultTimeout()