python pytest实战一:pytest框架结构

  • 模块级(setup_module/teardown_module)模块始末,全局的( 优先级最高)(不在类中)
  • 函数级(setup_function/teardown_function)只对函数用例生效(不在类中)
  • 类级(setup_class/teardown_class)只在类前后运行一次(在类中)
  • 方法级(setup_method/teardown_method)开始于方法始末(在类中)
  • 类里面的(setup/teardown)运行在调用方法前后(在类中)
posted @ 2021-02-02 16:40  半路回归  阅读(229)  评论(0)    收藏  举报