pytest用例失敗重跑的方法


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

用例失敗重跑的方法ide

  1. 在用例上添加裝飾器@pytest.mark.flaky(reruns=2, reruns_delay=4)  reruns爲次數,reruns_delay間隔時間,單位s測試

  2. 安裝pytest-rerunfailures依賴包,在pytest.ini文件中addopts = 添加參數–reruns n (n:爲重試的次數)(有待測試)
    spa

相關文章
相關標籤/搜索