Pytest---框架结构
作者:互联网
模块级: setup_module/teardown_module 在模块始末调用(级别最高)
函数级: setup_function/teardown_function 只对函数用例调用(不在类中)
类级: setup_class/teardown_class 只在类中前后调用一次(在类中) 一定要要写在类里边
方法级: setup_method/tesrdown_method 在方法始末调用(在类中)
方法级: setup/teardown 运行在调用方法的前后
标签:function,调用,teardown,setup,module,class,---,Pytest,框架结构 来源: https://www.cnblogs.com/elsa92/p/15628443.html