mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-12 03:50:22 +00:00
* /schemas doesn't exist. * /lib/generators doesn't exist. * /vendor doesn't contain rb files. * /public doesn't contain rb files. * /swagger doesn't contain rb files. * /log doens't contain rb files.
15 lines
321 B
Ruby
Executable File
15 lines
321 B
Ruby
Executable File
#!/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
SimpleCov.start 'rails' do
|
|
add_filter '/bin/'
|
|
add_filter '/config/'
|
|
add_filter '/script'
|
|
add_filter '/db'
|
|
|
|
# We haven't managed to make simplecov recognise rake coverage accurately.
|
|
add_filter '/lib/tasks/'
|
|
|
|
formatter SimpleCov::Formatter::SimpleFormatter
|
|
end
|