We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 706c1c6 commit a15177cCopy full SHA for a15177c
.simplecov
@@ -1,7 +1,11 @@
1
# Code coverage
2
if ENV['COVERAGE']
3
require 'simplecov-cobertura'
4
- SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter
+ #SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter
5
+ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
6
+ SimpleCov::Formatter::CoberturaFormatter,
7
+ Coveralls::SimpleCov::Formatter
8
+ ])
9
10
SimpleCov.start 'rails'
11
end
spec/spec_helper.rb
@@ -17,8 +17,8 @@
17
18
19
20
- require 'simplecov'
21
require 'coveralls'
+ require 'simplecov'
22
23
24
RSpec.configure do |config|
0 commit comments