Remove db:migrate from ci task

Rails 4.1 auto-manages the database using schema.rb
This commit is contained in:
Dan Rice 2014-06-10 15:57:29 -04:00
parent 2820c423c7
commit 9469bacc2f

View file

@ -9,7 +9,7 @@ task :ci do |t|
require 'simplecov'
SimpleCov.start 'rails'
[:environment, 'db:migrate', 'test:all', 'cucumber'].each do |t|
[:environment, 'test:all', 'cucumber'].each do |t|
Rake::Task[t].invoke
end
end
end