Speed up repeated execution of unit tests

In the Cucumber tests, we do not access the Internet to install test
dependencies -- we assume that you've already run `bundle install` or
`appraisal install` to install those dependencies. Change the RSpec
tests so that the same thing happens.
This commit is contained in:
Elliot Winkler 2014-05-09 14:44:41 -06:00
parent 1511ed9161
commit 2748b75087
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ EOT
end
def install_gems
retrying('bundle install') do |command|
retrying('bundle install --local') do |command|
Bundler.with_clean_env { `#{command}` }
end
end