From fa382465758fff8d22bb377300472b028e69976c Mon Sep 17 00:00:00 2001 From: Juan Abia Date: Tue, 28 Jun 2022 10:36:00 +0200 Subject: [PATCH] remove test skip COMPOSER-1397 temporarily skipped azure-rhui image. Now that we test on rhel 8.7, this skip can be removed. --- test/cases/image_tests.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/cases/image_tests.sh b/test/cases/image_tests.sh index 8ad259276..b5c6f3321 100755 --- a/test/cases/image_tests.sh +++ b/test/cases/image_tests.sh @@ -49,10 +49,7 @@ get_test_cases () { TEST_CASE_SELECTOR="${DISTRO_CODE/-/_}-${ARCH}" pushd $IMAGE_TEST_CASES_PATH > /dev/null ALL_CASES=$(ls "$TEST_CASE_SELECTOR"*.json) - SKIP_OSTREE=$(jq -r 'if (.manifest.sources."org.osbuild.ostree" != null) then input_filename else empty end' "${TEST_CASE_SELECTOR}"*.json) - # temporarily skip azure-rhui image, see COMPOSER-1397 for details - SKIP_TMP=$(grep azure_rhui <<< "$ALL_CASES") - SKIP_CASES=("${SKIP_OSTREE[@]}" "$SKIP_TMP") + SKIP_CASES=$(jq -r 'if (.manifest.sources."org.osbuild.ostree" != null) then input_filename else empty end' "${TEST_CASE_SELECTOR}"*.json) mapfile -t TEST_CASES < <(grep -vxFf <(printf '%s\n' "${SKIP_CASES[@]}") <(printf '%s\n' "${ALL_CASES[@]}")) echo "${TEST_CASES[@]}" popd > /dev/null