From b3cbe0a3a5d2172430451d48b3fa57733e0a34f2 Mon Sep 17 00:00:00 2001 From: Raphael Sofaer Date: Wed, 1 Jun 2011 10:25:19 -0700 Subject: [PATCH] Wrap integration rake in MissingSourceFile rescue to avoid failure when the test gems aren't present. --- lib/tasks/integration.rake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/tasks/integration.rake b/lib/tasks/integration.rake index 1b5c55ff1..38c21bf9a 100644 --- a/lib/tasks/integration.rake +++ b/lib/tasks/integration.rake @@ -2,6 +2,7 @@ # licensed under the Affero General Public License version 3 or later. See # the COPYRIGHT file. +begin namespace :integration do desc "rebuild and prepare test db" task :gogogo => ['db:integration:prepare', :start_servers, :run_specs] @@ -46,3 +47,5 @@ namespace :integration do end end +rescue MissingSourceFile +end