import pytest类似的setup,teardown同样更灵活:
模块级(setup_module / teardown_module)模块始末,全局的(优先最高)
函数级(setup_function/ teardown_function)只对 函数用例生效(不在类中)
类级(setup_class/ teardown_class)只在类中前后运行一次(在类中)
方法级(setup_method / teardown_ methond)开始于方法始末(在类中)
类里面的(setup/ teardown)运行在调用方法的前后
pytest setup&teardown 各级别
最新推荐文章于 2024-06-02 09:59:11 发布