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:
commit
c4b619d0f4
3 changed files with 10 additions and 3 deletions
|
@ -50,3 +50,5 @@ notifications:
|
|||
env:
|
||||
global:
|
||||
secure: LlDKdKSRo3sEjQ55XesbOXhKZ3RrOtqoD1ZL8Wx39K3iVzeEV3Kc8HjDfEvo7R4pOc3BMTNJcputklVEPN0FkWGN7Py+OEtbHj3IZl0MX+KEWNk0gU+4+sgPrL1eXUQyMUSkCrBsKg08rPel4KMYUOXbtnLyUU9PDbBwm4LJYOc=
|
||||
after_success:
|
||||
- bundle exec codeclimate-test-reporter
|
6
Gemfile
6
Gemfile
|
@ -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
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue