How to prevent Rake test to call task db:test:prepare

后端 未结 3 1788
無奈伤痛
無奈伤痛 2020-12-15 09:54

Every time I want to run Rake test the task db:test:prepare is being called and it rebuilds my test environment database from schema.rb and migrations. What I would like to

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-15 10:35

    There is a plugin that takes care of this for you: override_rake_task. Here is a quick usage example:

    namespace :db do
      namespace :test do
        override_task :prepare do; end
      end
    end
    

提交回复
热议问题