1
# Simplecov config
2
3
SimpleCov.start do
4
add_filter 'spec'
5
add_filter 'integration'
6
add_group "Needing tests" do |file|
7
file.covered_percent < 90
8
end
9