From c0fc2a7e79680d1c6b367a4648d27ab500032302 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Mon, 13 Jul 2020 10:47:42 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=AB=20Temporarily=20disable=20F32=20io?= =?UTF-8?q?t=5Fcommit=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bugs are being worked out in #798 and we can disable this test until those bugs are fixed to avoid false failures in CI. Signed-off-by: Major Hayden --- schutzbot/run_image_tests.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/schutzbot/run_image_tests.sh b/schutzbot/run_image_tests.sh index fc0b5751e..ae50d86cd 100755 --- a/schutzbot/run_image_tests.sh +++ b/schutzbot/run_image_tests.sh @@ -61,6 +61,12 @@ cd $WORKING_DIRECTORY # Run each test case. for TEST_CASE in $(get_test_cases); do + # The fedora_32-x86_64-fedora_iot_commit-boot test has some bugs that + # still need to be worked out. See this bug for details: + # https://github.com/osbuild/osbuild-composer/issues/798 + if [[ $TEST_CASE == *fedora_iot_commit* ]]; then + continue + fi run_test_case $IMAGE_TEST_CASE_RUNNER $TEST_CASE done