Wrap integration rake in MissingSourceFile rescue to avoid failure when the test gems aren't present.

This commit is contained in:
Raphael Sofaer 2011-06-01 10:25:19 -07:00
parent de9e41a331
commit b3cbe0a3a5

View file

@ -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