From b75b25794b255bb453382b6a66f88abac6af7edd Mon Sep 17 00:00:00 2001 From: congqixia Date: Wed, 28 Aug 2024 17:01:00 +0800 Subject: [PATCH] enhance: [skip e2e] Fix test script always skip pip install (#35766) Signed-off-by: Congqi Xia --- tests/scripts/ci_e2e_4am.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/ci_e2e_4am.sh b/tests/scripts/ci_e2e_4am.sh index ae512778f3..900afa8d95 100755 --- a/tests/scripts/ci_e2e_4am.sh +++ b/tests/scripts/ci_e2e_4am.sh @@ -64,7 +64,7 @@ fi # skip pip install when DISABLE_PIP_INSTALL is set DISABLE_PIP_INSTALL=${DISABLE_PIP_INSTALL:-false} -if [ "${DISABLE_PIP_INSTALL:-}" = "" ]; then +if [ "${DISABLE_PIP_INSTALL:-}" = "false" ]; then echo "prepare e2e test" install_pytest_requirements fi