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

Merge pull request #319 from ebihara99999/fix_warnings_in_running_tests

Fix warnings in running tests
This commit is contained in:
Wesley Beary 2016-11-22 08:42:25 -06:00 committed by GitHub
commit c4b619d0f4
3 changed files with 10 additions and 3 deletions

View file

@ -50,3 +50,5 @@ notifications:
env:
global:
secure: LlDKdKSRo3sEjQ55XesbOXhKZ3RrOtqoD1ZL8Wx39K3iVzeEV3Kc8HjDfEvo7R4pOc3BMTNJcputklVEPN0FkWGN7Py+OEtbHj3IZl0MX+KEWNk0gU+4+sgPrL1eXUQyMUSkCrBsKg08rPel4KMYUOXbtnLyUU9PDbBwm4LJYOc=
after_success:
- bundle exec codeclimate-test-reporter

View file

@ -7,4 +7,8 @@ group :test, :default do
gem 'pry-nav'
gem 'mime-types', '~> 3.1'
end
gem "codeclimate-test-reporter", group: :test, require: nil
group :test do
gem "simplecov"
gem "codeclimate-test-reporter", "~> 1.0.0"
end

View file

@ -1,6 +1,7 @@
begin
require "codeclimate-test-reporter"
CodeClimate::TestReporter.start
require 'simplecov'
SimpleCov.start
SimpleCov.command_name "Shindo"
rescue LoadError => e
$stderr.puts "not recording test coverage: #{e.inspect}"
end