diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-02-10 17:09:33 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-02-10 17:09:33 +0000 |
commit | a24bf65a8b9f5371acfdb28e92e2c55897a549cb (patch) | |
tree | eb846848e3bf92631feebf0db1826803d2823b2d /lib/tasks | |
parent | 01a7c348285fadb76b8dedab4512d69242f9b879 (diff) | |
download | redmine-a24bf65a8b9f5371acfdb28e92e2c55897a549cb.tar.gz redmine-a24bf65a8b9f5371acfdb28e92e2c55897a549cb.zip |
Don't run Capybara tests on the CI server (#12822).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11345 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/ci.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/ci.rake b/lib/tasks/ci.rake index cf1e9a185..249893416 100644 --- a/lib/tasks/ci.rake +++ b/lib/tasks/ci.rake @@ -22,7 +22,7 @@ namespace :ci do desc "Build Redmine" task :build do Rake::Task["test"].invoke - Rake::Task["test:ui"].invoke unless RUBY_VERSION < '1.9' + #Rake::Task["test:ui"].invoke unless RUBY_VERSION < '1.9' end desc "Finish the build" |