From 3f1cfc37ef8f686073eb36c3a8f19c3ad25d257e Mon Sep 17 00:00:00 2001 From: Noel Kwan Date: Wed, 31 Jan 2024 12:06:18 +0800 Subject: [PATCH] disable range test --- ci/scripts/cron-e2e-test.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/scripts/cron-e2e-test.sh b/ci/scripts/cron-e2e-test.sh index 52c7a6faa366c..26c9838a18f7a 100755 --- a/ci/scripts/cron-e2e-test.sh +++ b/ci/scripts/cron-e2e-test.sh @@ -6,5 +6,7 @@ set -euo pipefail source ci/scripts/common.sh export RUN_COMPACTION=0; export RUN_META_BACKUP=1; -export RUN_DELETE_RANGE=1; +# NOTE(wenym): Delete range is disabled so its tests will fail. +# So we just disable the delete range test for now. +export RUN_DELETE_RANGE=0; source ci/scripts/run-e2e-test.sh