We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following to the code under the hood:
simplecov/lib/simplecov/configuration.rb
Lines 110 to 112 in 9036554
For SimpleCov.formatters call examples in the current documentation we need to use array of formatters:
SimpleCov.formatters
SimpleCov.formatters = [ SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::CSVFormatter, ]
instead of instance of SimpleCov::Formatter::MultiFormatter:
SimpleCov::Formatter::MultiFormatter
SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new([ SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::CSVFormatter, ])
PR: #1096
The text was updated successfully, but these errors were encountered:
Fixed via #1096, thanks
Sorry, something went wrong.
No branches or pull requests
Following to the code under the hood:
simplecov/lib/simplecov/configuration.rb
Lines 110 to 112 in 9036554
For
SimpleCov.formatters
call examples in the current documentation we need to use array of formatters:instead of instance of
SimpleCov::Formatter::MultiFormatter
:PR: #1096
The text was updated successfully, but these errors were encountered: