Disable multiprocess cases

pull/478/head
zhenwu 2019-11-22 14:12:57 +08:00
parent 29d9ac4954
commit 54e113ba31
2 changed files with 4 additions and 2 deletions

View File

@ -149,7 +149,8 @@ class TestConnect:
milvus.connect(uri=uri_value, timeout=1)
assert not milvus.connected()
def test_connect_with_multiprocess(self, args):
# disable
def _test_connect_with_multiprocess(self, args):
'''
target: test uri connect with multiprocess
method: set correct uri, test with multiprocessing connecting

View File

@ -25,7 +25,8 @@ index_params = {'index_type': IndexType.IVFLAT, 'nlist': 16384}
class TestMixBase:
def test_search_during_createIndex(self, args):
# disable
def _test_search_during_createIndex(self, args):
loops = 10000
table = gen_unique_str()
query_vecs = [vectors[0], vectors[1]]