我已经构建了一些serverspec代码来在多个主机上运行一组测试。问题是当任何测试失败时,测试在当前主机上停止。我希望即使测试失败也能继续使用所有主机。
Rakefile:
namespace :spec do
task :all => hosts.map {|h| 'spec:' + h.split('.')[0] }
hosts.each do |host|
begin
desc "Run serverspec to #{host}"
RSpec::Core::RakeTask.new(host) do |t|
ENV['TARGET_HOST'] = host
t.pattern = "spec/cfengine3/*_spec.rb"
end
rescue
end
end
end
完整代码: https://gist.github.com/neilhwatson/1d41c696102c01bbb87a
答案 0 :(得分:8)
此行为由RSpec::Core::RakeTask#fail_on_error控制,因此要在所有主机上继续运行,您需要添加t.fail_on_error = false
。我还认为你不需要rescue
。
namespace :spec do
task :all => hosts.map {|h| 'spec:' + h.split('.')[0] }
hosts.each do |host|
desc "Run serverspec to #{host}"
RSpec::Core::RakeTask.new(host) do |t|
ENV['TARGET_HOST'] = host
t.pattern = "spec/cfengine3/*_spec.rb"
t.fail_on_error = false
end
end
end