mirror of
https://github.com/containers/podman.git
synced 2025-05-23 10:07:33 +08:00
System tests: fix a multiarch problem
The multi-image load test was failing on non-x86_64 arch, because the images used by the test (:00000000, :20200902) did not have manifests for the given arch. Solution: all we need are two nonlocal images. Use the predefined NONLOCAL_IMAGE for one, and a new :multiimage tag (manually created, currently == :20210610) for the other. Document, so if/when RHEL adds new supported arches, the test will fail but a maintainer will have a clue what to do. Also, as long as I'm in here: add 'image prune -f' to teardown in build.bats, to avoid seeing lots of red "stray image" warnings in test logs. Also: skip a broken/flaky python test Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
@ -206,6 +206,7 @@ class TestContainers(unittest.TestCase):
|
||||
self.assertEqual(len(ctnrs), 1)
|
||||
|
||||
def test_copy_to_container(self):
|
||||
self.skipTest("FIXME: #10948 - test is broken")
|
||||
ctr: Optional[Container] = None
|
||||
try:
|
||||
test_file_content = b"Hello World!"
|
||||
|
Reference in New Issue
Block a user