File tree Expand file tree Collapse file tree 4 files changed +6
-19
lines changed Expand file tree Collapse file tree 4 files changed +6
-19
lines changed Original file line number Diff line number Diff line change 25
25
bundler-cache : true
26
26
27
27
- run : bundle exec rake
28
-
29
- - uses : coverallsapp/github-action@v2
30
- with :
31
- github-token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -12,4 +12,3 @@ gem "rake"
12
12
gem "rspec"
13
13
gem "rubocop-config-umbrellio"
14
14
gem "simplecov"
15
- gem "simplecov-lcov"
Original file line number Diff line number Diff line change @@ -111,11 +111,10 @@ GEM
111
111
simplecov-html (~> 0.11 )
112
112
simplecov_json_formatter (~> 0.1 )
113
113
simplecov-html (0.13.1 )
114
- simplecov-lcov (0.8.0 )
115
114
simplecov_json_formatter (0.1.4 )
116
115
tzinfo (2.0.6 )
117
116
concurrent-ruby (~> 1.0 )
118
- unicode-display_width (2.5 .0 )
117
+ unicode-display_width (2.6 .0 )
119
118
120
119
PLATFORMS
121
120
ruby
@@ -131,7 +130,6 @@ DEPENDENCIES
131
130
rspec
132
131
rubocop-config-umbrellio
133
132
simplecov
134
- simplecov-lcov
135
133
136
134
BUNDLED WITH
137
135
2.4.22
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
require "simplecov"
4
- require "simplecov-lcov"
5
4
6
- SimpleCov ::Formatter ::LcovFormatter . config do |config |
7
- config . report_with_single_file = true
8
- config . single_report_path = "coverage/lcov.info"
9
- end
10
-
11
- SimpleCov . formatter = SimpleCov ::Formatter ::MultiFormatter . new ( [
12
- SimpleCov ::Formatter ::HTMLFormatter ,
13
- SimpleCov ::Formatter ::LcovFormatter ,
14
- ] )
5
+ SimpleCov . formatter = SimpleCov ::Formatter ::HTMLFormatter
15
6
16
- SimpleCov . start
7
+ SimpleCov . start do
8
+ enable_coverage ( :branch )
9
+ minimum_coverage ( line : 100 , branch : 100 )
10
+ end
17
11
18
12
require "memery"
19
13
require "active_support/concern"
You can’t perform that action at this time.
0 commit comments