mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
dbbe6557ed
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
11 lines
348 B
Python
11 lines
348 B
Python
from base.client_base import TestcaseBase
|
|
from utils.util_log import test_log as log
|
|
|
|
|
|
class TestDeployBase(TestcaseBase):
|
|
|
|
def teardown_method(self, method):
|
|
log.info(("*" * 35) + " teardown " + ("*" * 35))
|
|
log.info("[teardown_method] Start teardown test case %s..." % method.__name__)
|
|
log.info("skip drop collection")
|