Skip to content

Commit

Permalink
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ before_script:
- git config --global user.email "[email protected]"
- git config --global user.name "Your Name"

script: CODECLIMATE_REPO_TOKEN=ea0ada8842b47f59715526e88df53a81afff061152ce67bb73a8baa75443ea43 bundle exec rspec
script: CODECLIMATE_REPO_TOKEN=ea0ada8842b47f59715526e88df53a81afff061152ce67bb73a8baa75443ea43 bundle exec rspec && bundle exec codeclimate-test-reporter

rvm:
- 2.0.0
Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ group :dev do
end

group :test do
gem 'codeclimate-test-reporter', require: nil
gem 'simplecov'
gem 'codeclimate-test-reporter', '~> 1.0.0', require: nil
end
4 changes: 2 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

require 'codeclimate-test-reporter'
CodeClimate::TestReporter.start
require 'simplecov'
SimpleCov.start

Dir['spec/support/**/*.rb'].each { |f| require f.sub(/\Aspec\//, '') }

Expand Down

0 comments on commit dd793bc

Please sign in to comment.