Sha256: fd0c9c72d80fb3d85c561a2f1aad2745ee4747f3b9add60be112fd925bb7c6c2
Contents?: true
Size: 691 Bytes
Versions: 32
Compression:
Stored size: 691 Bytes
Contents
# frozen_string_literal: true # A SimpleCov and Codecov configuration to track code coverage in your extension # # Include it AT THE TOP of your spec/spec_helper.rb: # # require 'solidus_dev_support/rspec/coverage' # # Note that things may not work properly if you don't include this at the very top! # require 'simplecov' SimpleCov.start('rails') do add_filter %r{^/lib/generators/.*/install/install_generator.rb} add_filter %r{^/lib/.*/factories.rb} add_filter %r{^/lib/.*/version.rb} end if ENV['CODECOV_TOKEN'] require 'codecov' SimpleCov.formatter = SimpleCov::Formatter::Codecov else warn "Provide a CODECOV_TOKEN environment variable to enable Codecov uploads" end
Version data entries
32 entries across 32 versions & 1 rubygems