摘要: import pytestdef setup_module(): print("整个模块开始只执行一次")def teardown_module(): print("整个模块结束只执行一次")def setup_function(): print("不在类中的方法先执行")def teardown_ 阅读全文
posted @ 2020-12-09 23:49 无敌小韭菜 阅读(35) 评论(0) 推荐(0) 编辑