Pytest---框架结构

模块级: setup_module/teardown_module 在模块始末调用(级别最高)
函数级: setup_function/teardown_function 只对函数用例调用(不在类中)
类级: setup_class/teardown_class 只在类中前后调用一次(在类中) 一定要要写在类里边
方法级: setup_method/tesrdown_method 在方法始末调用(在类中)
方法级: setup/teardown 运行在调用方法的前后

上一篇:RH358管理DNS和DNS服务器--自动化名称服务器配置


下一篇:Pytest测试用例之setup与teardown方法