mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
19 lines
385 B
Ruby
Executable File
19 lines
385 B
Ruby
Executable File
#!/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
SimpleCov.start 'rails' do
|
|
# The rails profile contains some filters already:
|
|
#
|
|
# - "/test/"
|
|
# - "/features/"
|
|
# - "/spec/"
|
|
# - "/autotest/"
|
|
# - /^\/config\//
|
|
# - /^\/db\//
|
|
add_filter '/bin/'
|
|
add_filter '/config/' # to include engine config
|
|
add_filter '/script'
|
|
|
|
formatter SimpleCov::Formatter::SimpleFormatter
|
|
end
|