diff --git a/tests/python_client/requirements.txt b/tests/python_client/requirements.txt index f29eca3e49..108da0903f 100644 --- a/tests/python_client/requirements.txt +++ b/tests/python_client/requirements.txt @@ -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 diff --git a/tests/python_client/testcases/test_search.py b/tests/python_client/testcases/test_search.py index 6c50a6a9ee..51442d13a1 100644 --- a/tests/python_client/testcases/test_search.py +++ b/tests/python_client/testcases/test_search.py @@ -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): """