From 1cc4bdaf06603f1aad6b01c5710e63340c4aa354 Mon Sep 17 00:00:00 2001 From: Jenny Li Date: Fri, 10 Dec 2021 16:25:06 +0800 Subject: [PATCH] Remove not used code in e2e.sh (#13179) Signed-off-by: Jenny Li --- tests/scripts/e2e.sh | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/tests/scripts/e2e.sh b/tests/scripts/e2e.sh index 2ad478d361..15a8f5b14c 100755 --- a/tests/scripts/e2e.sh +++ b/tests/scripts/e2e.sh @@ -64,16 +64,7 @@ if [[ "${TEST_ENV:-}" =~ ^kind* ]]; then fi -if [[ -n "${DISABLE_KIND:-}" ]]; then - cd ${ROOT}/tests/python_client - python3 -V - export CI_LOG_PATH=/tmp/ci_logs/test - if [ ! -d "${CI_LOG_PATH}" ]; then - mkdir -p ${CI_LOG_PATH} - fi - pytest -n ${PARALLEL_NUM} --host ${MILVUS_SERVICE_IP} --port ${MILVUS_SERVICE_PORT} \ - --html=${CI_LOG_PATH}/report.html --self-contained-html ${@:-} -else + pushd "${ROOT}/tests/docker" if [[ "${TEST_ENV:-}" =~ ^kind* ]]; then export PRE_EXIST_NETWORK="true" @@ -93,4 +84,3 @@ else fi fi popd -fi \ No newline at end of file