Merge pull request #29381 from ricardobranco777/skipnoamd64

test/e2e/healthcheck: skip ignore-result test on non-amd64
This commit is contained in:
Paul Holzinger 2026-08-03 17:43:32 +02:00 committed by GitHub
commit 7b8254d544
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -169,6 +169,7 @@ var _ = Describe("Podman healthcheck run", func() {
})
It("podman healthcheck --ignore-result exits 0 on failing healthcheck", func() {
SkipIfNotAMD64() // https://github.com/containers/podman/issues/28269
session := podmanTest.Podman([]string{"run", "-q", "-dt", "--name", "hc", "quay.io/libpod/badhealthcheck:latest"})
session.WaitWithDefaultTimeout()
Expect(session).Should(ExitCleanly())