我有一个调用slow测试的构建。由于一些慢速测试失败(我知道),构建失败。
是否有一种方法可以设置它,以便Jenkins不将构建标记为"失败",而不管缓慢的测试?
壳:
/usr/local/bin/phantomjs yslow.js -i grade -t 50 -f junit http://www.website.com > yslow.xml
控制台输出:
Build step 'Execute shell' marked build as failure
Recording test results
Finished: FAILURE
您可以使用groovyPostbuild插件。下面的代码应该可以工作:
if(manager.logContains(".*Build step 'Execute shell' marked build as failure.*")) {
manager.build.@result = hudson.model.Result.SUCCESS
}