X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/9c5fbffbcbb1301572b3de3fb45d11de58d93212..70148c4918a95ee9a49a18bf5789801d02e8ef5e:/services/api/Rakefile diff --git a/services/api/Rakefile b/services/api/Rakefile index c4b921745f..223f5ca216 100644 --- a/services/api/Rakefile +++ b/services/api/Rakefile @@ -4,21 +4,10 @@ require File.expand_path('../config/application', __FILE__) -Server::Application.load_tasks - -# http://www.pervasivecode.com/blog/2007/09/22/making-rails-raketest-not-drop-your-pgsql-database/ -# -# don't drop the test database; migrate it back to 0 -Rake::TaskManager.class_eval do - def delete_task(task_name) - @tasks.delete(task_name.to_s) - end - Rake.application.delete_task("db:test:purge") -end -namespace :db do - namespace :test do - task :purge do - ActiveRecord::Migrator.migrate("db/migrate/", 0) - end - end +begin + ok = PgPower +rescue + abort "Hm, pg_power is missing. Make sure you use 'bundle exec rake ...'" end + +Server::Application.load_tasks