Skip to content

Commit

Permalink
Update SimpleCov for line coverage output & exclude spec files
Browse files Browse the repository at this point in the history
  • Loading branch information
aharpervc committed Jan 16, 2025
1 parent ffd67ab commit 3d68003
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ group :development, :test do
gem 'rake'
gem 'rspec', '~> 3.0'
gem 'rspec_junit_formatter', '~> 0.4.1'
gem 'simplecov', '~> 0.16.1'
gem 'simplecov', '~> 0.22'
end
4 changes: 3 additions & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

require 'bundler/setup'
require 'simplecov'
SimpleCov.start
SimpleCov.start do
add_filter '/spec/'
end
require 'consult'
require 'byebug'

Expand Down

0 comments on commit 3d68003

Please sign in to comment.