🚫 Temporarily disable F32 iot_commit test

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 <major@redhat.com>
This commit is contained in:
Major Hayden 2020-07-13 10:47:42 -05:00 committed by Tom Gundersen
parent 43895f83ca
commit c0fc2a7e79

View file

@ -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