我有一些测试设置通过 Taurus 运行,并在 Jenkins 阶段启动它们,如下所示:
...previous stages...
stage('Load Tests'){
dir('./tests'){
bat "bat _testFile.yml"
}
}
...stages to execute if Load Tests stage succeeds
如果我的任何测试中的任何一个迭代失败,我想退出整个构建。但是这种设置以及包装在 try/catch 中都不起作用。