Remove teardown for bulk_insert tests (#20314)

Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>

Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>
pull/20325/head
yanliang567 2022-11-04 10:13:35 +08:00 committed by GitHub
parent f557af1143
commit d732a33938
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View File

@ -73,7 +73,7 @@ $ kind export logs .
### PyMilvus Test Environment Deployment and Case Execution
We recommend using Python 3 (3.6 or higher), consistent with the version supported by PyMilvus.
We recommend using Python 3 (3.8 or higher), consistent with the version supported by PyMilvus.
> Note: Procedures listed below will be completed automatically if you deployed Milvus using KinD.

View File

@ -72,9 +72,9 @@ class TestcaseBaseBulkInsert(TestcaseBase):
"minio_bucket_name"
]
def teardown_method(self, method):
log.info(("*" * 35) + " teardown " + ("*" * 35))
log.info("[teardown_method] Start teardown test case %s..." % method.__name__)
# def teardown_method(self, method):
# log.info(("*" * 35) + " teardown " + ("*" * 35))
# log.info("[teardown_method] Start teardown test case %s..." % method.__name__)
class TestBulkInsert(TestcaseBaseBulkInsert):

View File

@ -72,9 +72,9 @@ class TestcaseBaseBulkInsert(TestcaseBase):
"minio_bucket_name"
]
def teardown_method(self, method):
log.info(("*" * 35) + " teardown " + ("*" * 35))
log.info("[teardown_method] Start teardown test case %s..." % method.__name__)
# def teardown_method(self, method):
# log.info(("*" * 35) + " teardown " + ("*" * 35))
# log.info("[teardown_method] Start teardown test case %s..." % method.__name__)
class TestBulkInsertTaskClean(TestcaseBaseBulkInsert):