其他分享
首页 > 其他分享> > pytest测试框架(二)运行参数与框架结构

pytest测试框架(二)运行参数与框架结构

作者:互联网

运行参数

pytest提供了很多参数,可使用pytest --help 来查看帮助

框架结构

Pytest框架中的setup,teardown同样更灵活
模块级 (setup_module/teardown_module) 只在模块中前后运行一次
函数级 (setup_function/teardown_function) 不在类中的函数有用
类级 (setup_class/teardown_class) 只在类中前后运行一次,常用
方法级 (setup_method/teardown_methond) 运行在类中方法始末
方法级 (setup/teardown) 运行在类中方法始末,同(setup_method/teardown_methond),常用

标签:框架,teardown,setup,--,pytest,方法,框架结构,运行
来源: https://www.cnblogs.com/xxiaow/p/16670696.html