Skip to content
Snippets Groups Projects
Commit 47688dce authored by Cai Yudong's avatar Cai Yudong Committed by yefu.chen
Browse files

Mark invalid testcases


Signed-off-by: default avatarCai Yudong <yudong.cai@zilliz.com>
parent c2734fa5
No related branches found
No related tags found
No related merge requests found
......@@ -188,7 +188,7 @@ class TestSearchBase:
res = connect.search(collection, query)
@pytest.mark.skip("r0.3-test")
def test_search_field(self, connect, collection, get_top_k, get_nq):
def _test_search_field(self, connect, collection, get_top_k, get_nq):
'''
target: test basic search function, all the search params is correct, change top-k value
method: search with the given vectors, check the result
......@@ -956,7 +956,7 @@ class TestSearchBase:
assert res[i]._distances[1] > epsilon
@pytest.mark.skip("r0.3-test")
def test_query_entities_with_field_less_than_top_k(self, connect, id_collection):
def _test_query_entities_with_field_less_than_top_k(self, connect, id_collection):
"""
target: test search with field, and let return entities less than topk
method: insert entities and build ivf_ index, and search with field, n_probe=1
......
......@@ -699,7 +699,7 @@ class TestIndexBinary:
***************************************************************
"""
@pytest.mark.skip("repeat with test_create_index binary")
def test_get_index_info(self, connect, binary_collection, get_jaccard_index):
def _test_get_index_info(self, connect, binary_collection, get_jaccard_index):
'''
target: test describe index interface
method: create collection and add entities in it, create index, call describe index
......@@ -719,7 +719,7 @@ class TestIndexBinary:
assert file["index_type"] == get_jaccard_index["index_type"]
@pytest.mark.skip("repeat with test_create_index_partition binary")
def test_get_index_info_partition(self, connect, binary_collection, get_jaccard_index):
def _test_get_index_info_partition(self, connect, binary_collection, get_jaccard_index):
'''
target: test describe index interface
method: create collection, create partition and add entities in it, create index, call describe index
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment