From 741b128717565fc99e636c863f087e211d77ea0f Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 5 Mar 2024 10:19:49 +0100 Subject: [PATCH] test: disable anaconda-iso test because of issue#233 This commit disabled the anaconda-install test that fails currently because of https://github.com/osbuild/bootc-image-builder/issues/233 --- test/test_build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_build.py b/test/test_build.py index a3fd6d17..8c061f25 100644 --- a/test/test_build.py +++ b/test/test_build.py @@ -247,6 +247,7 @@ def test_image_build_without_se_linux_denials(image_type): f"denials in log {image_type.journal_output}" +@pytest.mark.skip(reason="see https://github.com/osbuild/bootc-image-builder/issues/233") @pytest.mark.skipif(platform.system() != "Linux", reason="boot test only runs on linux right now") @pytest.mark.parametrize("image_type", gen_testcases("anaconda-iso"), indirect=["image_type"]) def test_iso_installs(image_type):