enhance: update pymilvus version (#31529)

Signed-off-by: nico <cheng.yuan@zilliz.com>
pull/31637/head
nico 2024-03-27 11:13:09 +08:00 committed by GitHub
parent 678cb187e8
commit c299bdec1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 5 deletions

View File

@ -12,7 +12,7 @@ allure-pytest==2.7.0
pytest-print==0.2.1
pytest-level==0.1.1
pytest-xdist==2.5.0
pymilvus==2.4.0rc53
pymilvus==2.5.0rc3
pytest-rerunfailures==9.1.1
git+https://github.com/Projectplace/pytest-tags
ndg-httpsclient

View File

@ -791,7 +791,7 @@ class TestConnectionOperation(TestcaseBase):
# drop collection failed
self.collection_wrap.drop(check_task=ct.CheckTasks.err_res,
check_items={ct.err_code: 0, ct.err_msg: "should create connect first"})
check_items={ct.err_code: 1, ct.err_msg: "should create connect first"})
# successfully created default connection
self.connection_wrap.connect(alias=DefaultConfig.DEFAULT_USING, host=host, port=port,

View File

@ -3321,7 +3321,7 @@ class TestCollectionSearch(TestcaseBase):
assert set(ids).issubset(filter_ids_set)
@pytest.mark.tags(CaseLabel.L2)
def test_search_expression_all_data_type(self, nb, nq, dim, auto_id, _async, enable_dynamic_field):
def test_search_expression_all_data_type(self, nb, nq, dim, auto_id, _async):
"""
target: test search using all supported data types
method: search using different supported data types
@ -3329,8 +3329,7 @@ class TestCollectionSearch(TestcaseBase):
"""
# 1. initialize with data
collection_w, _, _, insert_ids = self.init_collection_general(prefix, True, nb, is_all_data_type=True,
auto_id=auto_id, dim=dim,
enable_dynamic_field=enable_dynamic_field)[0:4]
auto_id=auto_id, dim=dim)[0:4]
# 2. search
log.info("test_search_expression_all_data_type: Searching collection %s" %
collection_w.name)