pytest 测试框架中 setup、teardown 方法不生效
源码有改动:
将 setup、teardown改为:setup_method、teardown_method 可生效
def setup_method(self):print("测试用例执行前的初始化,如:打开浏览器,加载网页...")def setup_class(self):print("类执行前的初始化,如:创建日志对象,创建数据库的连接,创建接口的请求对象...")def teardown_method(self):print("\n测试用例执行后的收尾操作")def teardown_class(self):print("类执行后的收尾的工作,比如:销毁日志对象,销毁数据库的连接,销毁接口的请求对象")