test: enable bf16/f16 test cases for DISKANN index (#32257)

issue: #30793

Signed-off-by: binbin lv <binbin.lv@zilliz.com>
pull/32279/head
binbin 2024-04-15 19:41:19 +08:00 committed by GitHub
parent fd971a434f
commit 6db4565656
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 6 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.5.0rc8
pymilvus==2.5.0rc13
pytest-rerunfailures==9.1.1
git+https://github.com/Projectplace/pytest-tags
ndg-httpsclient

View File

@ -2212,9 +2212,8 @@ class TestCollectionSearch(TestcaseBase):
"limit": limit,
"_async": _async})
@pytest.mark.tags(CaseLabel.L2)
@pytest.mark.tags(CaseLabel.L1)
@pytest.mark.tags(CaseLabel.GPU)
@pytest.mark.skip("https://github.com/milvus-io/milvus/issues/31958")
@pytest.mark.parametrize("index, params",
zip(ct.all_index_types[:7],
ct.default_index_params[:7]))
@ -2225,8 +2224,6 @@ class TestCollectionSearch(TestcaseBase):
method: test search after different index and corresponding search params
expected: search successfully with limit(topK)
"""
if index == "DISKANN":
pytest.skip("https://github.com/milvus-io/milvus/issues/30793")
# 1. initialize with data
collection_w, _, _, insert_ids, time_stamp = self.init_collection_general(prefix, True, 5000,
partition_num=1,
@ -3164,7 +3161,6 @@ class TestCollectionSearch(TestcaseBase):
assert set(ids).issubset(filter_ids_set)
@pytest.mark.tags(CaseLabel.L2)
@pytest.mark.skip("https://github.com/milvus-io/milvus/issues/31958")
@pytest.mark.parametrize("bool_type", [True, False, "true", "false"])
def test_search_with_expression_bool(self, dim, auto_id, _async, bool_type, enable_dynamic_field):
"""