Python pytest 框架里面 有一个失败用例重跑,请各位大神帮忙指点

岩岩 · 2021年11月24日 · 最后由 岩岩 回复于 2022年01月14日 · 2542 次阅读

如果我的测试用例设计为:

class TestCase01:
.........def test01(self):
.................. print('test01')
......... def test02(self):
.................. print("test02")
.........def test03(self):
..................print("test03")
.........def test04(self):
..................print("test04")

如果我的 test03 用例执行失败,其他的测试用例都是成功的,使用失败的测试用例重新执行,但是 test03 的执行,需要 test01 先执行,然后执行 test02 在执行 test03
这时候,该怎们办

需要 登录 后方可回复, 如果你还没有账号请点击这里 注册