Whenever I run rspec tests for my Rails application it takes forever and a day of overhead before it actually starts running tests. Why is rspec so slow? Is there a way to speed up Rails' initial load or single out the part of my Rails app I need (e.g. ActiveRecord stuff only) so it doesn't load absolutely everything to run a few tests?
|
2
|
|
|
|
|
|
You should be able to to speed up your |
||
|
|
|
Are you running this over Rails? If so, it's not RSpec's initialization that's slow, it's Rails'. Rails has to initialize the entire codebase and yours before running the specs. Well, it doesn't have to, but it does. RSpec runs pretty fast for me under my small non-rails projects. |
||||
|
|
|
Running tests can be really slow because the whole rails environment has to load (try script/console) and only then can all tests run. You should use autotest which keeps the environment loaded and will check which files you edit. When you edit and save a file, only the tests that depend on these will run automatically and quickly. |
||
|
|
|
|
If you're using a Mac I recommend using Rspactor over autotest as it uses a lot fewer resources for polling changed files than autotest. There is both a full Cocoa version or the gem version that I maintain at Github
While these don't speed up individual rspec tests, they feel much faster as they auto run the affected spec's within a second of you hitting save. |
||||
|
|
|
If you are on a Windows environment then there is probably little you can do as Rails seems to startup really slowly under Windows. I had the same experience on Windows and had to move my setup to a Linux VM to make it really zippy (I was also using autotest). |
||
|
|
|
Why is rspec so slow? because it loads all the environement, loads fixtures and all that jazz. Is there a way to speed up Rails' initial load you could try using mocks instead of relying on the database, this is actually correct for unit testing and will definitly speed up your unit tests. Additionnaly using the spec server as mentionned by @Scott Matthewman can help, same with the autotest from zentest mentionned by @Marc-Andre Lafortune Is there a way to single out the part of my Rails app I need (e.g. ActiveRecord stuff only) so it doesn't load absolutely everything to run a few tests? what about this
I am not sure how the rspec task integrate with this but you could definitely use the test:recent task as a template to do the same with rspec tests if the.
doesn't exist yet |
||
|
|
|
|
The real culprit is if you run it using This task drops your entire test database and re-creates it from scratch. This seems ridiculous to me, but that's what it does (the same thing happens when you run You can easily work around this using the Like this:
|
||
|
|
|
I think the "zen" experience you're looking for is to run However, I'm having problems getting these two programs to communicate. I found an explanation here:
But, how do we fix this issue? I'm guessing it would involve downloading ZenTest and changing code for the |
||
|
|
