From 689d046f5631ce9b672159c41d1c1f3e952b8023 Mon Sep 17 00:00:00 2001 From: Gianluca Zuccarelli Date: Fri, 26 Apr 2024 20:29:23 +0100 Subject: [PATCH] test: tweak itest for cross-arch manifest handline We now need a real bootable container because internal/containers/containers tries to mount the container and fails if it's just a FROM scratch container. --- test/test_manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_manifest.py b/test/test_manifest.py index 77697d01..4b3da1d8 100644 --- a/test/test_manifest.py +++ b/test/test_manifest.py @@ -117,7 +117,7 @@ def test_manifest_cross_arch_check(tmp_path, build_container): cntf_path = tmp_path / "Containerfile" cntf_path.write_text(textwrap.dedent("""\n # build for x86_64 only - FROM scratch + FROM quay.io/centos-bootc/centos-bootc:stream9 """), encoding="utf8") with make_container(tmp_path, arch="x86_64") as container_tag: