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

16 lines
317 B
Plaintext
Raw Normal View History

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