Skip to content

Commit d2fa385

Browse files
committed
test: disable fedora-43 bootc test for now
This commit disabled the `TestCaseFedora43` fow now because it fails in CI with: ``` ... org.osbuild.bootc.install-to-filesystem: 19bb778fae4541936924e98952fc101eabf7f1782856dd0447ae1fef4ad3ac61 { "kernel-args": [ "rw", "console=tty0", "console=ttyS0", "systemd.journald.forward_to_console=1" ], "target-imgref": "quay.io/fedora/fedora-bootc:43" } device/disk (org.osbuild.loopback): loop0 acquired (locked: False) mount/- (org.osbuild.btrfs): mounting /dev/loop0p4 -> /store/tmp/buildroot-tmp-e004ml_u/mounts/ mount/boot (org.osbuild.xfs): mounting /dev/loop0p3 -> /store/tmp/buildroot-tmp-e004ml_u/mounts/boot mount/boot-efi (org.osbuild.fat): mounting /dev/loop0p2 -> /store/tmp/buildroot-tmp-e004ml_u/mounts/boot/efi Mount transient overlayfs for /etc/containers Creating bind mount for run/osbuild/containers Installing image: docker://quay.io/fedora/fedora-bootc:43 Initializing ostree layout ERROR Installing to filesystem: Creating ostree deployment: invalid reference format ``` Until this is resolved this test (against the current in development fedora) is not useful and blocks our CI.
1 parent 66049b5 commit d2fa385

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/testcases.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ def gen_testcases(what): # pylint: disable=too-many-return-statements
115115
TestCaseFedora(image="qcow2"),
116116
# test with custom disk configs
117117
TestCaseC9S(image="qcow2", disk_config="swap"),
118-
TestCaseFedora43(image="raw", disk_config="btrfs"),
118+
# mvo: disabled 2025-05-21 because:
119+
# "ERROR Installing to filesystem: Creating ostree deployment: invalid reference format"
120+
# TestCaseFedora43(image="raw", disk_config="btrfs"),
119121
TestCaseC9S(image="raw", disk_config="lvm"),
120122
]
121123
if what == "all":

0 commit comments

Comments
 (0)