Hi,
Running simplecov along with parallel_tests. Added the following SimpleCov block in both spec/spec_helper.rb
and features/support/env.rb
SimpleCov.start 'rails' do
merge_timeout 7200
add_filter "/vendor/"
end
Coverage results are overwritten which I understand as each Rspec or cucumber test generates
a coverage report.
Is it possible to run simplecov with parallel_tests and merge the coverage of each of
them ?
Hi,
Running simplecov along with parallel_tests. Added the following SimpleCov block in both spec/spec_helper.rb
and features/support/env.rb
SimpleCov.start 'rails' do
merge_timeout 7200
add_filter "/vendor/"
end
Coverage results are overwritten which I understand as each Rspec or cucumber test generates
a coverage report.
Is it possible to run simplecov with parallel_tests and merge the coverage of each of
them ?