一、前置说明

pytest 提供了 setup 和 teardown 的功能,用于在测试执行前后进行一些必要的准备和清理工作,以确保测试的可控性和可维护性。

二、操作步骤

1、编写测试代码

def setup_module():
    print("\n===============Setup module")


def teardown_module():
    print(
12-23 11:02