Archived
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.
lita-tox/.simplecov

11 lines
209 B
Text
Raw Permalink Normal View History

2015-07-25 03:42:19 -04:00
require 'coveralls'
2017-07-20 15:48:49 -04:00
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
2015-07-25 03:42:19 -04:00
SimpleCov::Formatter::HTMLFormatter,
Coveralls::SimpleCov::Formatter,
2017-07-20 15:48:49 -04:00
])
2015-07-25 03:42:19 -04:00
2017-07-20 15:48:49 -04:00
SimpleCov.start do
add_filter '/spec/'
end