From 17ca1ebfeec8dea79c03783230298b0969b6d4e5 Mon Sep 17 00:00:00 2001 From: MrPresent-Han Date: Mon, 23 Sep 2024 09:30:31 -0400 Subject: [PATCH] fix: change pymilvus version for hybridsearch-groupby(#36407) Signed-off-by: MrPresent-Han --- tests/python_client/requirements.txt | 4 ++-- tests/python_client/testcases/test_mix_scenes.py | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/tests/python_client/requirements.txt b/tests/python_client/requirements.txt index 5bc61b6224c43..3e2af12e12590 100644 --- a/tests/python_client/requirements.txt +++ b/tests/python_client/requirements.txt @@ -12,8 +12,8 @@ allure-pytest==2.7.0 pytest-print==0.2.1 pytest-level==0.1.1 pytest-xdist==2.5.0 -pymilvus==2.5.0rc80 -pymilvus[bulk_writer]==2.5.0rc80 +pymilvus==2.5.0rc81 +pymilvus[bulk_writer]==2.5.0rc81 pytest-rerunfailures==9.1.1 git+https://github.com/Projectplace/pytest-tags ndg-httpsclient diff --git a/tests/python_client/testcases/test_mix_scenes.py b/tests/python_client/testcases/test_mix_scenes.py index b578bbad31d0a..8ce02adf00b5c 100644 --- a/tests/python_client/testcases/test_mix_scenes.py +++ b/tests/python_client/testcases/test_mix_scenes.py @@ -1266,7 +1266,6 @@ def prepare_data(self): self.collection_wrap.load() @pytest.mark.tags(CaseLabel.L0) - @pytest.mark.xfail(reason="issue #36407") @pytest.mark.parametrize("group_by_field", [DataType.VARCHAR.name, "varchar_with_index"]) def test_search_group_size(self, group_by_field): """ @@ -1308,7 +1307,6 @@ def test_search_group_size(self, group_by_field): assert len(set(group_values)) == limit @pytest.mark.tags(CaseLabel.L0) - @pytest.mark.xfail(reason="issue #36407") def test_hybrid_search_group_size(self): """ hybrid search group by on 3 different float vector fields with group by varchar field with group size @@ -1360,7 +1358,6 @@ def test_hybrid_search_group_size(self): group_distances = [res[i][l + 1].distance] @pytest.mark.tags(CaseLabel.L1) - @pytest.mark.xfail(reason="issue #36407") def test_hybrid_search_group_by(self): """ verify hybrid search group by works with different Rankers