diff --git a/test/e2e/push_test.go b/test/e2e/push_test.go index 4a15d17ede9d..d49057b80679 100644 --- a/test/e2e/push_test.go +++ b/test/e2e/push_test.go @@ -209,18 +209,18 @@ var _ = Describe("Podman push", func() { Expect(push).Should(Exit(0)) Expect(push.ErrorToString()).To(BeEmpty()) - pull := podmanTest.Podman([]string{"pull", "--tls-verify=false", "--signature-policy", "sign/policy.json", "localhost:5000/sigstore-signed-params"}) + pull := podmanTest.Podman([]string{"pull", "--log-level=debug", "--tls-verify=false", "--signature-policy", "sign/policy.json", "localhost:5000/sigstore-signed-params"}) pull.WaitWithDefaultTimeout() Expect(pull).To(ExitWithError()) Expect(pull.ErrorToString()).To(ContainSubstring("A signature was required, but no signature exists")) // Sign an image, and verify it is accepted. - push = podmanTest.Podman([]string{"push", "--tls-verify=false", "--remove-signatures", "--sign-by-sigstore", "testdata/sigstore-signing-params.yaml", ALPINE, "localhost:5000/sigstore-signed-params"}) + push = podmanTest.Podman([]string{"push", "--log-level=debug", "--tls-verify=false", "--remove-signatures", "--sign-by-sigstore", "testdata/sigstore-signing-params.yaml", ALPINE, "localhost:5000/sigstore-signed-params"}) push.WaitWithDefaultTimeout() Expect(push).Should(Exit(0)) - Expect(push.ErrorToString()).To(BeEmpty()) + // DEBUG: Expect(push.ErrorToString()).To(BeEmpty()) - pull = podmanTest.Podman([]string{"pull", "--tls-verify=false", "--signature-policy", "sign/policy.json", "localhost:5000/sigstore-signed-params"}) + pull = podmanTest.Podman([]string{"pull", "--log-level=debug", "--tls-verify=false", "--signature-policy", "sign/policy.json", "localhost:5000/sigstore-signed-params"}) pull.WaitWithDefaultTimeout() Expect(pull).Should(Exit(0)) }