标签:exp 形式 测试 cond expect ica condition 测试用例 code
https://www.cnblogs.com/zhuxibo/p/13921581.html
xfail(condition, reason)
--condition 预期失败的条件
--reason 预期失败的原因
pytest.mark.run(order=1)
(需安装pytest-ordering) 数字数字形式: 小数、整数、负数
执行顺序:
1、由小到大
2、由正到负
3、未标记 的在正数后,负数前执行
顺序: 1,2,3,无标记,-3,-2,-1
@pytest.mark.timeout(60)
或命令$pytest --timeout=300 (需安装pytest-timeout)
@pytest.mark.flaky(reruns=5, reruns_delay=1)
或命令$pytest --reruns 5 --reruns-delay 1 (需安装pytest-rerunfailures)
相对于:测试失败后,还会再跑5次
标签:exp 形式 测试 cond expect ica condition 测试用例 code
原文地址:https://www.cnblogs.com/zhuxibo/p/14863835.html