Sha256: 375f19a0ee9b2957cafbd9b11dde6d9fd45c8362343385e7c367988e445f4560
Contents?: true
Size: 706 Bytes
Versions: 17
Compression:
Stored size: 706 Bytes
Contents
$:.unshift(File.join("../lib", __FILE__)) require "bundler/setup" require 'rspec' begin require 'simplecov' require 'simplecov-lcov' SimpleCov::Formatter::LcovFormatter.config do |config| #Coveralls is coverage by default/lcov. Send info results config.report_with_single_file = true config.single_report_path = 'coverage/lcov.info' end SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([ SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::LcovFormatter ]) SimpleCov.start do add_filter "/spec/" end rescue LoadError end require 'oydid' ::RSpec.configure do |c| c.filter_run focus: true c.run_all_when_everything_filtered = true end
Version data entries
17 entries across 17 versions & 2 rubygems