怎么解决pytest用例失败

Test_Login:
    (==)
    (=)
    ():
        test.Primary.driver.get()
        bool_success = LoginSystem(test.Primary.driver).login_openiot()
        bool_success

用例失败重跑的方法

  1. 在用例上添加装饰器@pytest.mark.flaky(reruns=2, reruns_delay=4)  reruns为次数,reruns_delay间隔时间,单位s

  2. 安装pytest-rerunfailures依赖包,在pytest.ini文件中addopts = 添加参数–reruns n (n:为重试的次数)(有待测试)

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/187180.html

(0)
上一篇 2021年11月5日
下一篇 2021年11月5日

相关推荐

发表回复

登录后才能评论