1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00

1.8.7 coverage isolation

This commit is contained in:
Josh Lane 2015-01-05 10:14:12 -08:00
parent f38973f1bb
commit 5a55b6e48a
2 changed files with 6 additions and 3 deletions

View file

@ -1,6 +1,5 @@
source "https://rubygems.org"
gem "codeclimate-test-reporter", :group => :test, :require => nil
gem 'mime-types', '~> 1.16'
gem 'nokogiri', '~> 1.5.11'

View file

@ -1,5 +1,9 @@
require "codeclimate-test-reporter"
CodeClimate::TestReporter.start
begin
require "codeclimate-test-reporter"
CodeClimate::TestReporter.start
rescue LoadError => e
$stderr.puts "not recording test coverage: #{e.inspect}"
end
require File.expand_path('../../lib/fog/aws', __FILE__)