mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
18 lines
383 B
Ruby
Executable File
18 lines
383 B
Ruby
Executable File
#!/bin/env ruby
|
|
|
|
SimpleCov.start 'rails' do
|
|
add_filter '/bin/'
|
|
add_filter '/config/'
|
|
add_filter '/jobs/application_job.rb'
|
|
add_filter '/schemas/'
|
|
add_filter '/lib/generators'
|
|
add_filter '/spec/'
|
|
add_filter '/vendor/'
|
|
add_filter '/public'
|
|
add_filter '/swagger'
|
|
add_filter '/script'
|
|
add_filter '/log'
|
|
add_filter '/db'
|
|
add_filter '/lib/tasks/sample_data/'
|
|
end
|