move ci stuff into the spec rake file

git-svn-id: https://dev.finn.de/svn/cockpit/trunk@1359 7926756e-e54e-46e6-9721-ed318f58905e
pull/6827/head
t.felgentreff 15 years ago
parent 98a4f2f947
commit 6664ebecc1
  1. 15
      tasks/spec.rake

@ -10,5 +10,20 @@ begin
end
end
task :spec => "spec:plugins:redmine_costs"
begin
require 'ci/reporter/rake/rspec' # use this if you're using RSpec
require 'ci/reporter/rake/test_unit' # use this if you're using Test::Unit
task :"spec:plugins:redmine_costs:ci" => ["ci:setup:rspec", "spec:plugins:redmine_costs"]
rescue LoadError
puts <<-EOS
Missing the CI Reporter gem. This is not fatal.
If you want XML output for the CI, execute
gem install ci_reporter
EOS
end
rescue LoadError
end
Loading…
Cancel
Save