9 lines
157 B
Ruby
9 lines
157 B
Ruby
# Simplecov config
|
|
|
|
SimpleCov.start do
|
|
add_filter 'spec'
|
|
add_filter 'migrations'
|
|
add_group "Needing tests" do |file|
|
|
file.covered_percent < 90
|
|
end
|
|
end
|