From a74756e4fbed3476d4616f13dd0dcdefcb41ab40 Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Thu, 22 Feb 2024 10:09:57 +0200 Subject: [PATCH] Skip gce image type, already covered in gcp.sh --- test/cases/image_tests.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/cases/image_tests.sh b/test/cases/image_tests.sh index 2fb0e0bdd..20f0503cc 100755 --- a/test/cases/image_tests.sh +++ b/test/cases/image_tests.sh @@ -63,6 +63,10 @@ get_test_cases () { SKIP_AZURE=$(grep vhd-boot <<< "$ALL_CASES" || echo -n) SKIP_CASES=("${SKIP_CASES[@]}" "$SKIP_AZURE") + # skip image types covered in gcp.sh + SKIP_GCE=$(grep gce-boot <<< "$ALL_CASES" || echo -n) + SKIP_CASES=("${SKIP_CASES[@]}" "$SKIP_GCE") + # skip image types covered in vmware.sh SKIP_OVA=$(grep -E 'ova-boot|vmdk-boot' <<< "$ALL_CASES" || echo -n) SKIP_CASES=("${SKIP_CASES[@]}" "${SKIP_OVA[@]}")