Skip to content

Commit 75b2cb2

Browse files
committed
Update to use new style ruby test reporter
1 parent dd86802 commit 75b2cb2

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ source "https://rubygems.org"
33
gemspec
44

55
group :test do
6+
gem "simplecov"
67
gem "rake"
78
gem "rspec"
89
gem "rspec_junit_formatter"
9-
gem "codeclimate-test-reporter", require: nil
10+
gem "codeclimate-test-reporter", "1.0.0.pre.rc1"
1011
end

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ GEM
2020
minitest (~> 5.1)
2121
tzinfo (~> 1.1)
2222
builder (3.2.2)
23-
codeclimate-test-reporter (0.4.8)
24-
simplecov (>= 0.7.1, < 1.0.0)
23+
codeclimate-test-reporter (1.0.0.pre.rc1)
2524
codeclimate-yaml (0.9.0)
2625
activesupport
2726
secure_string
@@ -59,7 +58,7 @@ GEM
5958
builder (< 4)
6059
rspec-core (>= 2, < 4, != 2.12.0)
6160
secure_string (1.3.3)
62-
simplecov (0.10.0)
61+
simplecov (0.11.2)
6362
docile (~> 1.1.0)
6463
json (~> 1.8)
6564
simplecov-html (~> 0.10.0)
@@ -75,10 +74,11 @@ PLATFORMS
7574

7675
DEPENDENCIES
7776
codeclimate!
78-
codeclimate-test-reporter
77+
codeclimate-test-reporter (= 1.0.0.pre.rc1)
7978
rake
8079
rspec
8180
rspec_junit_formatter
81+
simplecov
8282

8383
BUNDLED WITH
8484
1.12.5

circle.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ dependencies:
1111
test:
1212
override:
1313
- make citest
14+
- bundle exec codeclimate-test-reporter
1415

1516
notify:
1617
webhooks:

spec/spec_helper.rb

Lines changed: 2 additions & 2 deletions
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
require "cc/cli"
55
require "cc/yaml"

0 commit comments

Comments
 (0)