Skip to content

Commit 844b112

Browse files
committed
! Add missing stuff for code coverage
1 parent 9172a1d commit 844b112

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
bundler-cache: true
4444

4545
- name: Collect coverage info
46-
run: bundle exec rake spec
46+
run: bundle exec rake test
4747

4848
- name: Coveralls Parallel
4949
uses: coverallsapp/github-action@master

activerecord-like.gemspec

+3
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,7 @@ Gem::Specification.new do |gem|
2727
gem.add_development_dependency "minitest", ">= 3"
2828

2929
gem.add_development_dependency "appraisal", "~> 2.0"
30+
31+
gem.add_development_dependency "simplecov", ">= 0.22"
32+
gem.add_development_dependency "simplecov-lcov", ">= 0.8"
3033
end

test/helper.rb

+19
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
require 'bundler/setup'
2+
3+
if ENV["COVERALLS"]
4+
require "simplecov"
5+
require "simplecov-lcov"
6+
7+
SimpleCov::Formatter::LcovFormatter.config do |c|
8+
c.report_with_single_file = true
9+
c.single_report_path = "coverage/lcov.info"
10+
end
11+
12+
SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new(
13+
[SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::LcovFormatter]
14+
)
15+
16+
SimpleCov.start do
17+
add_filter "test/"
18+
end
19+
end
20+
221
require 'minitest/autorun'
322
require 'minitest/spec'
423
require 'active_record/like'

0 commit comments

Comments
 (0)