Remove build_timeout in test code (#14763)

Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>
pull/14789/head
yanliang567 2022-01-04 19:37:28 +08:00 committed by GitHub
parent 76a9687310
commit 71b943993a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -405,14 +405,14 @@ class TestIndexBase:
"""
@pytest.mark.tags(CaseLabel.L0)
@pytest.mark.timeout(BUILD_TIMEOUT)
# @pytest.mark.timeout(BUILD_TIMEOUT)
def test_create_index(self, connect, collection, get_simple_index):
"""
target: test create index interface
method: create collection and add entities in it, create index
expected: return search success
"""
result = connect.insert(collection, default_entities)
connect.insert(collection, default_entities)
connect.create_index(collection, field_name, get_simple_index)
if get_simple_index["index_type"] != "FLAT":
index = connect.describe_index(collection, "")