mirror of https://github.com/milvus-io/milvus.git
13 lines
741 B
Groovy
13 lines
741 B
Groovy
timeout(time: 10, unit: 'MINUTES') {
|
|
try {
|
|
dir ("${PROJECT_NAME}_test") {
|
|
checkout([$class: 'GitSCM', branches: [[name: "${SEMVER}"]], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: "${params.GIT_USER}", url: "git@192.168.1.105:Test/milvus_test.git", name: 'origin', refspec: "+refs/heads/${SEMVER}:refs/remotes/origin/${SEMVER}"]]])
|
|
sh 'python3 -m pip install -r requirements.txt'
|
|
sh "pytest . --alluredir=cluster_test_out --ip ${env.JOB_NAME}-${env.BUILD_NUMBER}-cluster-milvus-cluster-proxy.milvus-cluster.svc.cluster.local"
|
|
}
|
|
} catch (exc) {
|
|
echo 'Milvus Cluster Test Failed !'
|
|
throw exc
|
|
}
|
|
}
|