场景:
• 测试失败后要重新运行n次,要在重新运行之间添加延迟时 间,间隔n秒再运行。
• 执行:
• 安装:pip install pytest-rerunfailures
•
• pytest -v - -reruns 5 --reruns-delay 1 ---每次等1秒 重试5次
pip3 install pytest-assume 断言后继续执行,但要修改断言
@pytest.mark.parametrize((‘x‘, ‘y‘), [(1, 1), (1, 0), (0, 1)])def test_assume(x, y): pytest.assume(x == y) pytest.assume(3 == 4) pytest.assume(5 == 9)
原文地址:https://www.cnblogs.com/QaStudy/p/11567139.html
时间: 2024-10-10 04:47:44