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:
|
env:
|
||||||
global:
|
global:
|
||||||
secure: LlDKdKSRo3sEjQ55XesbOXhKZ3RrOtqoD1ZL8Wx39K3iVzeEV3Kc8HjDfEvo7R4pOc3BMTNJcputklVEPN0FkWGN7Py+OEtbHj3IZl0MX+KEWNk0gU+4+sgPrL1eXUQyMUSkCrBsKg08rPel4KMYUOXbtnLyUU9PDbBwm4LJYOc=
|
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 'pry-nav'
|
||||||
gem 'mime-types', '~> 3.1'
|
gem 'mime-types', '~> 3.1'
|
||||||
end
|
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
|
begin
|
||||||
require "codeclimate-test-reporter"
|
require 'simplecov'
|
||||||
CodeClimate::TestReporter.start
|
SimpleCov.start
|
||||||
|
SimpleCov.command_name "Shindo"
|
||||||
rescue LoadError => e
|
rescue LoadError => e
|
||||||
$stderr.puts "not recording test coverage: #{e.inspect}"
|
$stderr.puts "not recording test coverage: #{e.inspect}"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue