diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2017-11-27 14:54:30 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@gmail.com> | 2017-11-27 14:54:30 -0500 |
commit | 7c2a75335f59847a5ffa3252d0fd47bdee265e7d (patch) | |
tree | 0b18cd5fcf75b0f01f9d373841908ff9c06849a6 /test/kpod_create.bats | |
parent | d0f3f1fcad043f9f262253f5d35b139a8c38ed6a (diff) | |
download | podman-7c2a75335f59847a5ffa3252d0fd47bdee265e7d.tar.gz podman-7c2a75335f59847a5ffa3252d0fd47bdee265e7d.tar.bz2 podman-7c2a75335f59847a5ffa3252d0fd47bdee265e7d.zip |
Temporarily disable kpod create tests until kpod rm is ready
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'test/kpod_create.bats')
-rw-r--r-- | test/kpod_create.bats | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/kpod_create.bats b/test/kpod_create.bats index 3d3efcff3..5605b5fe0 100644 --- a/test/kpod_create.bats +++ b/test/kpod_create.bats @@ -11,12 +11,14 @@ function teardown() { } @test "create a container based on local image" { + skip "Reenable after kpod rm merges, and use rm to clean up" run ${KPOD_BINARY} ${KPOD_OPTIONS} create $BB ls echo "$output" [ "$status" -eq 0 ] } @test "create a container based on a remote image" { + skip "Reenable after kpod rm merges, and use rm to clean up" run ${KPOD_BINARY} ${KPOD_OPTIONS} create ${BB_GLIBC} ls echo "$output" [ "$status" -eq 0 ] |