pytest定义1个所有测试案例执行前执行的方法

Posted by Tesla9527 on January 20, 2021

在脚本的根目录中建立conftest.py文件,文件内容如下。该方法会在所有测试用例执行前被执行。

1
2
3
@pytest.fixture(scope="session",autouse="true")
def init_var():
    print('我被最先执行了')