enhance: [skip e2e] Fix test script always skip pip install (#35775)

https://github.com/milvus-io/milvus/pull/35766

Signed-off-by: Yellow Shine <sammy.huang@zilliz.com>
pull/35785/head
yellow-shine 2024-08-28 17:05:06 +08:00 committed by GitHub
parent 93b118946c
commit e331288b78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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