diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-01-05 13:30:42 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-01-05 13:30:42 +0200 |
commit | de05a598b3d73a545899f26173cafbaeff474629 (patch) | |
tree | 322ab2a86a8680ccaf605419063ccd8fd23c855c /features | |
parent | 2f5a733346959f993d7e87ad944d38eb8dbe6f13 (diff) | |
download | gitlab-ce-de05a598b3d73a545899f26173cafbaeff474629.tar.gz |
Update to rails 3.2.10. Use simplercov in spinach too
Diffstat (limited to 'features')
-rw-r--r-- | features/support/env.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/features/support/env.rb b/features/support/env.rb index 500de0f3e20..1f75d84954a 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -1,3 +1,8 @@ +unless ENV['CI'] + require 'simplecov' + SimpleCov.start 'rails' +end + ENV['RAILS_ENV'] = 'test' require './config/environment' |