mirror of https://github.com/milvus-io/milvus.git
Change parallel parameter for nightly (#13108)
Signed-off-by: Binbin Lv <binbin.lv@zilliz.com>pull/13116/merge
parent
d323b3bd84
commit
326a1beff7
|
@ -153,7 +153,7 @@ pipeline {
|
|||
MILVUS_HELM_RELEASE_NAME="${release_name}" \
|
||||
MILVUS_CLUSTER_ENABLED="${clusterEnabled}" \
|
||||
TEST_TIMEOUT="${e2e_timeout_seconds}" \
|
||||
./ci_e2e.sh "-x --tags L0 L1"
|
||||
./ci_e2e.sh "-n 6 -x --tags L0 L1"
|
||||
"""
|
||||
} else {
|
||||
error "Error: Unsupported Milvus client: ${MILVUS_CLIENT}"
|
||||
|
|
|
@ -62,9 +62,9 @@ fi
|
|||
trace "prepare e2e test" install_pytest_requirements
|
||||
|
||||
if [[ -n "${TEST_TIMEOUT:-}" ]]; then
|
||||
timeout "${TEST_TIMEOUT}" pytest -n ${PARALLEL_NUM} --host ${MILVUS_SERVICE_NAME} --port ${MILVUS_SERVICE_PORT} \
|
||||
timeout "${TEST_TIMEOUT}" pytest --host ${MILVUS_SERVICE_NAME} --port ${MILVUS_SERVICE_PORT} \
|
||||
--html=${CI_LOG_PATH}/report.html --self-contained-html ${@:-}
|
||||
else
|
||||
pytest -n ${PARALLEL_NUM} --host ${MILVUS_SERVICE_NAME} --port ${MILVUS_SERVICE_PORT} \
|
||||
pytest --host ${MILVUS_SERVICE_NAME} --port ${MILVUS_SERVICE_PORT} \
|
||||
--html=${CI_LOG_PATH}/report.html --self-contained-html ${@:-}
|
||||
fi
|
Loading…
Reference in New Issue