- 控制用例执行顺序的方法
- 在需要调整用例执行顺序的函数(或方法)前增加
- @pytest.mark.run(order=x) x表示数字
- 数字形式: 小数、整数、负数
执行顺序:
1、由小到大
2、由正到负
3、未标记 的在正数后,负数前执行
顺序: 1,2,3,无标记,-3,-2,-1
- 控制用例执行顺序的方法
- 在需要调整用例执行顺序的函数(或方法)前增加
- @pytest.mark.run(order=x) x表示数字
- 数字形式: 小数、整数、负数
执行顺序:
1、由小到大
2、由正到负
3、未标记 的在正数后,负数前执行
顺序: 1,2,3,无标记,-3,-2,-1
几个常用装饰,没有涉及的大家多多补充~
- pytest.ini 配置文件
- 例子: [pytest] addopts = -v -s --html=py_test/scripts/report/report.html -p no:warnings --reruns=10 testpaths = ./py_test/scripts python_files= test_rerun.py python_classes = Test* python_function = test* xfail_strict = true