summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorQi Wang <qiwan@redhat.com>2020-05-21 16:17:06 -0400
committerQi Wang <qiwan@redhat.com>2020-05-21 16:17:39 -0400
commitf7dd915acccd42208edb2d7630f8f3dd48c7ec10 (patch)
treef979a00f3319ae2fb7776b80e9eb258fe8767588 /test
parentf6aa620b05a057ca8fb9631b66313c6220de50c2 (diff)
downloadpodman-f7dd915acccd42208edb2d7630f8f3dd48c7ec10.tar.gz
podman-f7dd915acccd42208edb2d7630f8f3dd48c7ec10.tar.bz2
podman-f7dd915acccd42208edb2d7630f8f3dd48c7ec10.zip
remote manifest test
Enable remove manifest tests. Skip --purge test because remote does not support it. Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/e2e/manifest_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/manifest_test.go b/test/e2e/manifest_test.go
index c47e20276..1137ebe8e 100644
--- a/test/e2e/manifest_test.go
+++ b/test/e2e/manifest_test.go
@@ -155,7 +155,6 @@ var _ = Describe("Podman manifest", func() {
})
It("podman manifest push", func() {
- Skip(v2remotefail)
session := podmanTest.Podman([]string{"manifest", "create", "foo"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
@@ -185,7 +184,8 @@ var _ = Describe("Podman manifest", func() {
})
It("podman manifest push purge", func() {
- Skip(v2remotefail)
+ // remote does not support --purge
+ SkipIfRemote()
session := podmanTest.Podman([]string{"manifest", "create", "foo"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))