rscons/spec/spec_helper.rb
Josh Holtrop 95ee63292e Rscons is no longer a gem.
Run specs against the combined distributable standalone script.
2018-09-03 19:32:53 -04:00

16 lines
268 B
Ruby

require "simplecov"
SimpleCov.start do
add_filter "/spec/"
add_filter "/.bundle/"
if ENV["partial_specs"]
command_name "RSpec-partial"
else
command_name "RSpec"
end
project_name "Rscons"
merge_timeout 3600
end
require_relative "../test/rscons"