Skip to content

Commit c87a27b

Browse files
committed
Fix for new codeclimate configuration
1 parent 407b021 commit c87a27b

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ language: ruby
33
rvm:
44
- 2.3.1
55
before_install: gem install bundler -v 1.12.5
6+
after_success:
7+
- bundle exec codeclimate-test-reporter

Gemfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ source 'https://rubygems.org'
33
gemspec
44

55
group :test do
6-
gem 'codeclimate-test-reporter'
6+
gem "simplecov"
7+
gem "codeclimate-test-reporter", "~> 1.0.0"
78
end

spec/spec_helper.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
require "codeclimate-test-reporter"
2-
CodeClimate::TestReporter.start
1+
require "simplecov"
2+
SimpleCov.start
33

44
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
55
require 'fakeredis/rspec'

0 commit comments

Comments
 (0)