From 17889012315771b009c54b85136cecb3399bc954 Mon Sep 17 00:00:00 2001 From: neza2017 Date: Fri, 19 Feb 2021 16:47:14 +0800 Subject: [PATCH] Add tag for test_insert and test_has_collection Signed-off-by: neza2017 --- tests/python/test_index.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/python/test_index.py b/tests/python/test_index.py index 44e176a95a..ee7b36c506 100644 --- a/tests/python/test_index.py +++ b/tests/python/test_index.py @@ -123,6 +123,7 @@ class TestIndexBase: with pytest.raises(Exception) as e: dis_connect.create_index(collection, field_name, get_simple_index) + @pytest.mark.skip("r0.3-test") @pytest.mark.timeout(BUILD_TIMEOUT) def test_create_index_search_with_query_vectors(self, connect, collection, get_simple_index, get_nq): ''' @@ -267,6 +268,7 @@ class TestIndexBase: get_simple_index["metric_type"] = "IP" connect.create_index(collection, field_name, get_simple_index) + @pytest.mark.skip("r0.3-test") @pytest.mark.timeout(BUILD_TIMEOUT) def test_create_index_search_with_query_vectors_ip(self, connect, collection, get_simple_index, get_nq): ''' @@ -522,6 +524,7 @@ class TestIndexBase: connect.drop_index(collection, field_name) +@pytest.mark.skip("r0.3-test") class TestIndexBinary: @pytest.fixture( scope="function",