diff --git a/test/helper.rb b/test/helper.rb index 29f81c1f6..d1567b66a 100644 --- a/test/helper.rb +++ b/test/helper.rb @@ -2,9 +2,11 @@ $:.unshift File.expand_path("../../lib", __FILE__) begin - gem "coveralls" - require "coveralls" - Coveralls.wear! + if ENV['CI'] + gem "coveralls" + require "coveralls" + Coveralls.wear! + end rescue Gem::LoadError end