From 37af62613260f905c4dbc339ff7dc4623021d01c Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 4 Mar 2024 13:32:28 -0500 Subject: [PATCH] ci: Drop fedora:eln by default See https://github.com/CentOS/centos-bootc/pull/364 Aiming to sharpen our focus. --- test/testcases.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/test/testcases.py b/test/testcases.py index 09e754af2..5fa484a75 100644 --- a/test/testcases.py +++ b/test/testcases.py @@ -10,7 +10,6 @@ def gen_testcases(what): # bootc containers that are tested by default CONTAINERS_TO_TEST = { - "fedora": "quay.io/centos-bootc/fedora-bootc:eln", "centos": "quay.io/centos-bootc/centos-bootc:stream9", } # allow commandline override, this is used when testing @@ -30,9 +29,9 @@ def gen_testcases(what): test_cases = [] # only fedora right now, centos iso installer is broken right now: # https://github.com/osbuild/bootc-image-builder/issues/157 - cnt = CONTAINERS_TO_TEST["fedora"] - for img_type in INSTALLER_IMAGE_TYPES: - test_cases.append(f"{cnt},{img_type}") + #cnt = CONTAINERS_TO_TEST["fedora"] + # for img_type in INSTALLER_IMAGE_TYPES: + # test_cases.append(f"{cnt},{img_type}") return test_cases elif what == "direct-boot": # skip some raw/ami tests (they are identical right now) to @@ -40,9 +39,7 @@ def gen_testcases(what): # do more in parallel? test_cases = [ CONTAINERS_TO_TEST["centos"] + "," + DIRECT_BOOT_IMAGE_TYPES[0], - CONTAINERS_TO_TEST["fedora"] + "," + DIRECT_BOOT_IMAGE_TYPES[1], CONTAINERS_TO_TEST["centos"] + "," + DIRECT_BOOT_IMAGE_TYPES[2], - CONTAINERS_TO_TEST["fedora"] + "," + DIRECT_BOOT_IMAGE_TYPES[0], ] # do a cross arch test too if platform.machine() == "x86_64":