mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
Remove timeout for nightly build (#14475)
Signed-off-by: Jenny Li <jing.li@zilliz.com>
This commit is contained in:
parent
62b5d11572
commit
d5c2b6bde9
@ -151,8 +151,7 @@ pipeline {
|
||||
MILVUS_HELM_RELEASE_NAME="${release_name}" \
|
||||
MILVUS_CLUSTER_ENABLED="${clusterEnabled}" \
|
||||
TEST_TIMEOUT="${e2e_timeout_seconds}" \
|
||||
CASE_TIMEOUT="${case_timeout_seconds}"\
|
||||
./ci_e2e.sh "-n 6 -x --tags L0 L1"
|
||||
./ci_e2e.sh "-n 6 -x --tags L0 L1 --timeout ${case_timeout_seconds}"
|
||||
"""
|
||||
} else {
|
||||
error "Error: Unsupported Milvus client: ${MILVUS_CLIENT}"
|
||||
|
||||
@ -62,12 +62,12 @@ if [ ! -d "${CI_LOG_PATH}" ]; then
|
||||
fi
|
||||
trace "prepare e2e test" install_pytest_requirements
|
||||
|
||||
CASE_TIMEOUT=${CASE_TIMEOUT:-600}
|
||||
|
||||
|
||||
if [[ -n "${TEST_TIMEOUT:-}" ]]; then
|
||||
timeout "${TEST_TIMEOUT}" pytest --host ${MILVUS_SERVICE_NAME} --port ${MILVUS_SERVICE_PORT} \
|
||||
--timeout ${CASE_TIMEOUT} --html=${CI_LOG_PATH}/report.html --self-contained-html ${@:-}
|
||||
--html=${CI_LOG_PATH}/report.html --self-contained-html ${@:-}
|
||||
else
|
||||
pytest --host ${MILVUS_SERVICE_NAME} --port ${MILVUS_SERVICE_PORT} \
|
||||
--timeout ${CASE_TIMEOUT} --html=${CI_LOG_PATH}/report.html --self-contained-html ${@:-}
|
||||
--html=${CI_LOG_PATH}/report.html --self-contained-html ${@:-}
|
||||
fi
|
||||
Loading…
x
Reference in New Issue
Block a user