I just want to exclude the display of the supplier’s gems using the coverage report, how do I do this?
Here's what my coverage report looks like:
That's how I dealt with this, I realized that there is documentation there!
SimpleCov.profiles.define 'no_vendor_coverage' do load_profile 'rails' add_filter 'vendor' # Don't include vendored stuff end SimpleCov.start 'no_vendor_coverage'
You can exclude the suppliers folder adding a filter to spec_helper.rb or where you define the configuration for SimpleCov
SimpleCov.start 'rails' do add_filter 'vendor' end
Source: https://habr.com/ru/post/1232114/More articles:How to increase log file size threshold for TFS 2015 Build - tfsTableau Javascript HTTPS API not working - javascripthttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1232111/xcode-server-ci-bot-build-failure-fails-to-launch-simulator&usg=ALkJrhhp110Kj-Oaw9tnCYyUPREfDAuz8wUpgrading from Visual Studio 2008 to 2015 - what are my problems? - c #iOS 9 - Keyboard appears after rejecting UIAlertView - iosChoose a parent and all his siblings - javascriptStrange error while trying to share shared_ptr () - c ++Display last tag in commit with multiple tags - gitSending a POST request using JSONArray using Volley - jsonNo module named sql_server.pyodbc.base - pythonAll Articles