bump codeclimate-test-reporter

This commit is contained in:
Benjamin Neff 2016-11-10 03:52:12 +01:00
parent b6dc082c24
commit 042b1192c2
4 changed files with 7 additions and 9 deletions

View file

@ -44,9 +44,9 @@ group :test do
gem "nyan-cat-formatter", require: false
# test coverage
gem "simplecov", "0.12.0", require: false
gem "simplecov-rcov", "0.2.3", require: false
gem "codeclimate-test-reporter", require: false
gem "simplecov", "0.12.0", require: false
gem "simplecov-rcov", "0.2.3", require: false
gem "codeclimate-test-reporter", "~> 1.0.0", require: false
# test helpers
gem "fixture_builder", "0.5.0.pre.RC1"

View file

@ -59,8 +59,8 @@ GEM
ast (2.3.0)
builder (3.2.2)
byebug (9.0.6)
codeclimate-test-reporter (0.6.0)
simplecov (>= 0.7.1, < 1.0.0)
codeclimate-test-reporter (1.0.3)
simplecov
coderay (1.1.1)
concurrent-ruby (1.0.2)
crack (0.4.3)
@ -289,7 +289,7 @@ PLATFORMS
ruby
DEPENDENCIES
codeclimate-test-reporter
codeclimate-test-reporter (~> 1.0.0)
diaspora_federation!
diaspora_federation-rails!
diaspora_federation-test!

View file

@ -10,9 +10,6 @@ unless ENV["NO_COVERAGE"] == "true"
add_filter "spec"
add_filter "test"
end
require "codeclimate-test-reporter"
CodeClimate::TestReporter.start
end
ENV["RAILS_ENV"] ||= "test"

View file

@ -9,4 +9,5 @@ if [[ ${TRAVIS_RUBY_VERSION} == "2.1" ]]; then
else
# ruby >= 2.2
bundle exec rake --trace
bundle exec codeclimate-test-reporter
fi