1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Use ENV var for coverage

This will lessen the chance of mistakenly committing with that branch
set to true.
This commit is contained in:
jc00ke 2012-03-18 19:53:26 -07:00
parent ffd3b92aa3
commit 1279fe68cb
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -3,3 +3,4 @@ Gemfile.lock
*.swp
dump.rdb
.rbx
coverage/

View file

@ -1,5 +1,5 @@
$TESTING = true
if false
if ENV.has_key?("SIMPLECOV")
require 'simplecov'
SimpleCov.start
end