mirror of https://github.com/milvus-io/milvus.git
test: enable bf16/f16 test cases for DISKANN index (#32257)
issue: #30793 Signed-off-by: binbin lv <binbin.lv@zilliz.com>pull/32279/head
parent
fd971a434f
commit
6db4565656
|
@ -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
|
||||
|
|
|
@ -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):
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue