Skip to content

Commit eef411e

Browse files
committed
removed rcov metric_fu report, using simplecov instead
1 parent 05077cf commit eef411e

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

Gemfile

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ gem 'sqlite3'
99

1010
group :test do
1111
gem 'simplecov'
12-
gem 'simplecov-rcov-text'
1312
gem 'metric_fu'
1413
gem 'fattr'
1514
gem 'arrayfields'

Rakefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ require File.expand_path('../config/application', __FILE__)
66

77
require 'metric_fu'
88
MetricFu::Configuration.run do |config|
9-
config.rcov[:rcov_opts] << "-Itest" # Needed to find test_helper
10-
config.rcov[:external] = 'coverage/rcov/rcov.txt'
9+
config.metrics -= [ :rcov ]
1110
end
1211

1312
JenkinsRailsTest::Application.load_tasks

test/test_helper.rb

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
require 'simplecov'
2-
require 'simplecov-rcov-text'
3-
SimpleCov.formatter = SimpleCov::Formatter::RcovTextFormatter
42
SimpleCov.start 'rails'
53

64
ENV["RAILS_ENV"] = "test"

0 commit comments

Comments
 (0)