diff options
Diffstat (limited to 'test/podman_commit.bats')
-rw-r--r-- | test/podman_commit.bats | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/podman_commit.bats b/test/podman_commit.bats index 9257743e9..10cc724f1 100644 --- a/test/podman_commit.bats +++ b/test/podman_commit.bats @@ -13,6 +13,7 @@ function setup() { } @test "podman commit default" { + skip "Skipping until docker name removed from image store assumptions" run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run -d --name my_ctr ${FEDORA_MINIMAL} sleep 6000" echo "$output" [ "$status" -eq 0 ] @@ -31,6 +32,7 @@ function setup() { } @test "podman commit with message flag" { + skip "Skipping until docker name removed from image store assumptions" run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run -d --name my_ctr ${FEDORA_MINIMAL} sleep 6000" echo "$output" [ "$status" -eq 0 ] @@ -49,6 +51,7 @@ function setup() { } @test "podman commit with author flag" { + skip "Skipping until docker name removed from image store assumptions" run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run -d --name my_ctr ${FEDORA_MINIMAL} sleep 6000" echo "$output" [ "$status" -eq 0 ] @@ -67,6 +70,7 @@ function setup() { } @test "podman commit with change flag" { + skip "Skipping until docker name removed from image store assumptions" run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run -d --name my_ctr ${FEDORA_MINIMAL} sleep 6000" echo "$output" [ "$status" -eq 0 ] @@ -85,6 +89,7 @@ function setup() { } @test "podman commit with pause flag" { + skip "Skipping until docker name removed from image store assumptions" run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run -d --name my_ctr ${FEDORA_MINIMAL} sleep 6000" echo "$output" [ "$status" -eq 0 ] @@ -103,6 +108,7 @@ function setup() { } @test "podman commit non-running container" { + skip "Skipping until docker name removed from image store assumptions" run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} create --name my_ctr ${FEDORA_MINIMAL} ls" echo "$output" [ "$status" -eq 0 ] |