我有1到10个测试用例,
testcase1
.
.
.
testcase2
.
.
.
testcase3
.
.
.
testcase(n)
我想从5到9重新运行测试用例。我现在使用以下命令:
"pybot -t testcase5 testcase6 testcase7 testcase8 testcase9 example.robot"
相反,如何使用“testcase5-9”这样的范围来指定它?
答案 0 :(得分:2)
您无法在命令行选项中指定范围。
您可以使用“用户指南”的Using command line options部分中描述的内容。
例如,您可以做的是pybot -t testcase* example.robot
,但这将运行您的所有测试。
您拥有的选项:
-t testcase_a*