1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/.simplecov

16 lines
317 B
Text
Raw Normal View History

2018-11-22 15:22:11 -05:00
# frozen_string_literal: true
2018-11-28 09:53:11 -05:00
require 'coveralls'
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
SimpleCov::Formatter::HTMLFormatter,
Coveralls::SimpleCov::Formatter,
])
2018-11-22 15:22:11 -05:00
SimpleCov.start 'rails' do
2018-11-22 15:30:11 -05:00
add_filter '/factories/'
2018-11-22 15:22:11 -05:00
add_filter '/spec/'
add_group 'Channels', '/app/channels/'
end