我正在运行rake来自动化我在CCNet内部的构建过程.我用它来启动IIS Express,然后运行Nunit,然后在Nunit完成后关闭服务器.问题是,每次Nunit失败,耙子停止,永远不会到达关闭部分.在Nunit失败后如何继续使用rake,并且仍然告诉CCNet Nunit失败了,构建也是如此?
解决方法
你如何从rake运行NUnit?你在用“sh”吗?
我只是使用空块来忽略任何结果(失败或成功)
sh "your shell command" do |ok,res| #empty block to ignore any Failed or success status #in your case set Failed flag based on ok parameter nunitSuccessFlag=false #hardcoded for sample; must set true or false based on ok parameter end
关闭服务器后将此引发异常置于有效状态,以便ccnet知道构建失败
raise "NUnit Failed" if nunitSuccessFlag == false
替代方法:使用上面用户knut所述的try catch块,如以下链接所示:
Rake Task: error handling(关闭确保块中的服务器)