diff --git a/test/cases/image_tests.sh b/test/cases/image_tests.sh index 20f0503cc..81d3e1123 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 Edge CI + SKIP_EDGE=$(grep edge_ <<< "$ALL_CASES" || echo -n) + SKIP_CASES=("${SKIP_CASES[@]}" "${SKIP_EDGE[@]}") + # skip image types covered in gcp.sh SKIP_GCE=$(grep gce-boot <<< "$ALL_CASES" || echo -n) SKIP_CASES=("${SKIP_CASES[@]}" "$SKIP_GCE")