Skip to content

Commit

Permalink
always require and start simplecov
Browse files Browse the repository at this point in the history
  • Loading branch information
khaf committed Oct 25, 2014
1 parent 21354e6 commit 1b10b24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
5 changes: 1 addition & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ source "https://rubygems.org"

group :test do
gem "rspec", "~> 2.13"
if ENV["CI"]
else
gem 'simplecov', :require => false
end
gem 'simplecov', :require => false
end

gem "rake"
Expand Down
7 changes: 2 additions & 5 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
require 'rspec'
require "support/utils"

# require 'simplecov'
# SimpleCov.start
require 'simplecov'
SimpleCov.start

$:.unshift((Pathname(__FILE__).dirname.parent + 'lib').to_s)

Expand All @@ -14,9 +14,6 @@
# logging code.
Aerospike.logger = Logger.new(StringIO.new, Logger::DEBUG)

require 'simplecov'
SimpleCov.start

RSpec.configure do |config|

end

0 comments on commit 1b10b24

Please sign in to comment.