test/python/docker/compat: skip test_search_image

It does not seem to work in the new CI system right now.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
(cherry picked from commit 30aaf14abb)
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger
2026-06-01 12:13:42 +02:00
parent 1b01fd5223
commit 12885e236f

View File

@@ -46,6 +46,7 @@ class TestImages(common.DockerTestCase):
def test_search_image(self):
"""Search for image"""
self.skipTest("FIXME: search seems broken with our new CI and local registry mirror setup")
for registry in self.docker.images.search("alpine"):
# registry matches if string is in either one
self.assertIn("alpine", registry["Name"] + " " + registry["Description"].lower())