Skip to content

Commit

Permalink
Switched from coveralls to simplecov
Browse files Browse the repository at this point in the history
  • Loading branch information
dmendel committed Jun 20, 2023
1 parent 88e128d commit 5591333
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bindata.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |s|

s.add_development_dependency('rake')
s.add_development_dependency('minitest', "> 5.0.0", "< 5.12.0")
s.add_development_dependency('coveralls')
s.add_development_dependency('simplecov')
s.description = <<-END.gsub(/^ +/, "")
BinData is a declarative way to read and write binary file formats.
Expand Down
7 changes: 5 additions & 2 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
require 'rubygems'

require 'coveralls'
Coveralls.wear!
require 'simplecov'
SimpleCov.start do
enable_coverage :branch
primary_coverage :branch
end

require 'minitest/autorun'
require 'stringio'
Expand Down

0 comments on commit 5591333

Please sign in to comment.