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 achive is to disable the call of db:test:prepare when I want to test make Rails application. Is it possible without modifying Rails gem?
|
|
Here's a solution I've seen around: In your Rakefile:
In
|
||||||||
|
|
|
There is a plugin that takes care of this for you: override_rake_task. Here is a quick usage example:
|
||
|
|
