diff --git a/ci/jenkins/step/singleDevNightlyTest.groovy b/ci/jenkins/step/singleDevNightlyTest.groovy index a5e3d17cb98ef996887927b3a340e97dbc6c1727..9ea5fd389c37998ca506ca6d02360a7aa6c09066 100644 --- a/ci/jenkins/step/singleDevNightlyTest.groovy +++ b/ci/jenkins/step/singleDevNightlyTest.groovy @@ -49,5 +49,6 @@ timeout(time: 180, unit: 'MINUTES') { } dir ("tests/milvus_python_test") { sh "pytest . --level=2 --alluredir=\"test_out/dev/single/sqlite\" --ip ${env.HELM_RELEASE_NAME}.milvus.svc.cluster.local" + sh "pytest . --level=1 --ip ${env.HELM_RELEASE_NAME}.milvus.svc.cluster.local --port=19121 --handler=HTTP" } } diff --git a/tests/milvus_python_test/test_restart.py b/tests/milvus_python_test/stability/test_restart.py similarity index 100% rename from tests/milvus_python_test/test_restart.py rename to tests/milvus_python_test/stability/test_restart.py diff --git a/tests/milvus_python_test/test_index.py b/tests/milvus_python_test/test_index.py index 238640bb39c6a3ba10f9263fdbfa73a14199a727..ca0b7dce28a3fa859b671a8ecce9ab358855cc7c 100644 --- a/tests/milvus_python_test/test_index.py +++ b/tests/milvus_python_test/test_index.py @@ -755,9 +755,11 @@ class TestIndexIP: index_param = get_simple_index["index_param"] index_type = get_simple_index["index_type"] logging.getLogger().info(get_simple_index) + logging.getLogger().info(connect.get_collection_info(ip_collection)) status, ids = connect.insert(ip_collection, vectors) status = connect.create_index(ip_collection, index_type, index_param) logging.getLogger().info(connect.get_index_info(ip_collection)) + logging.getLogger().info(connect.get_collection_stats(ip_collection)) query_vecs = [vectors[0], vectors[1], vectors[2]] top_k = 5 search_param = get_search_param(index_type)