本文转自测试人社区,原文链接:https://ceshiren.com/t/topic/30190

Allure2 失败重试功能应用场景

  • Allure2 可以收集用例运行期间,重试的用例的结果,以及这段时间重试的历史记录。
  • 软件测试学习笔记丨Allure2 失败重试功能应用场景_软件测试

  • 重试功能可以使用 pytest 相关的插件,例如 pytest-rerunfailures。
import pytest

@pytest.mark.flaky(reruns=2, reruns_delay=2)

def test_rerun2():

assert False
  • 重试的结果信息,会展示在详情页面的”Retries” 选项卡中。