diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-06-13 04:15:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 04:15:20 -0400 |
commit | 1c46b31a6806d2aae54238b233ebfd8c126061b8 (patch) | |
tree | aff135c1c44b2a7505914864be8ab2da541bf22b /test | |
parent | c044d455a1f42447fa800f0a5b4e83a7e271dbeb (diff) | |
parent | 48cf1d258326b25308225cb4a22703d6e3416b18 (diff) | |
download | podman-1c46b31a6806d2aae54238b233ebfd8c126061b8.tar.gz podman-1c46b31a6806d2aae54238b233ebfd8c126061b8.tar.bz2 podman-1c46b31a6806d2aae54238b233ebfd8c126061b8.zip |
Merge pull request #14560 from rhatdan/remote
podman-remote push --remove-signatures support
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/push_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/push_test.go b/test/e2e/push_test.go index 0288bf915..864278777 100644 --- a/test/e2e/push_test.go +++ b/test/e2e/push_test.go @@ -96,7 +96,6 @@ var _ = Describe("Podman push", func() { }) It("podman push to local registry", func() { - SkipIfRemote("Remote does not support --digestfile or --remove-signatures") if podmanTest.Host.Arch == "ppc64le" { Skip("No registry image for ppc64le") } @@ -118,6 +117,7 @@ var _ = Describe("Podman push", func() { push.WaitWithDefaultTimeout() Expect(push).Should(Exit(0)) + SkipIfRemote("Remote does not support --digestfile") // Test --digestfile option push2 := podmanTest.Podman([]string{"push", "--tls-verify=false", "--digestfile=/tmp/digestfile.txt", "--remove-signatures", ALPINE, "localhost:5000/my-alpine"}) push2.WaitWithDefaultTimeout() |