]> source.dussan.org Git - redmine.git/commitdiff
run test:ui in CI Server on only Ruby 2.0 (#12822)
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 13 May 2013 23:16:02 +0000 (23:16 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 13 May 2013 23:16:02 +0000 (23:16 +0000)
UI tests fails randomly on Ruby 1.9.3.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11844 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/tasks/ci.rake

index cae626150fd0cfdce01ddc736f20f2fde03c31db..0c9deeea4f47a47e283cb57377cbd1499b63b69d 100644 (file)
@@ -23,7 +23,7 @@ namespace :ci do
   desc "Build Redmine"
   task :build do
     Rake::Task["test"].invoke
-    Rake::Task["test:ui"].invoke if RUBY_VERSION >= '1.9.3'
+    Rake::Task["test:ui"].invoke if RUBY_VERSION >= '2.0.0'
   end
 
   desc "Finish the build"