mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
20 lines
434 B
Ruby
Executable File
20 lines
434 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/'
|
|
|
|
formatter SimpleCov::Formatter::SimpleFormatter
|
|
end
|