diff --git a/sh/e2e/e2e.sh b/sh/e2e/e2e.sh index 9c3d492e..c17bd1a8 100755 --- a/sh/e2e/e2e.sh +++ b/sh/e2e/e2e.sh @@ -30,7 +30,6 @@ source "${SCRIPT_DIR}/lib/common.sh" source "${SCRIPT_DIR}/lib/provision.sh" source "${SCRIPT_DIR}/lib/verify.sh" source "${SCRIPT_DIR}/lib/teardown.sh" -source "${SCRIPT_DIR}/lib/cleanup.sh" # --------------------------------------------------------------------------- # All supported clouds (excluding local — no infra to provision) diff --git a/sh/e2e/lib/cleanup.sh b/sh/e2e/lib/cleanup.sh deleted file mode 100644 index 3e56936e..00000000 --- a/sh/e2e/lib/cleanup.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -# e2e/lib/cleanup.sh — Find and destroy stale e2e-* instances (cloud-agnostic) -set -eo pipefail - -# --------------------------------------------------------------------------- -# cleanup_stale_apps -# -# Delegates to the active cloud driver's stale cleanup function. -# --------------------------------------------------------------------------- -cleanup_stale_apps() { - log_header "Cleaning up stale e2e instances (${ACTIVE_CLOUD})" - cloud_cleanup_stale -}