diff options
author | Ed Santiago <santiago@redhat.com> | 2021-07-15 10:24:13 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2021-07-15 11:29:58 -0600 |
commit | e4dcb1004fa6b6966977bc8f9b707040ae09a239 (patch) | |
tree | 58d9776a89a2e004803cd57878d7b1909790642e /test/python/docker | |
parent | d24fc6b84384cbe4188db941ad452f02d3713540 (diff) | |
download | podman-e4dcb1004fa6b6966977bc8f9b707040ae09a239.tar.gz podman-e4dcb1004fa6b6966977bc8f9b707040ae09a239.tar.bz2 podman-e4dcb1004fa6b6966977bc8f9b707040ae09a239.zip |
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>
Diffstat (limited to 'test/python/docker')
-rw-r--r-- | test/python/docker/compat/test_containers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/python/docker/compat/test_containers.py b/test/python/docker/compat/test_containers.py index 38ac5b59f..9fcdf49ea 100644 --- a/test/python/docker/compat/test_containers.py +++ b/test/python/docker/compat/test_containers.py @@ -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!" |