Merge pull request #981 from BobbyMcWho/improve-coveralls-consistency

simplecov ignore strategy_macros
This commit is contained in:
Bobby McDonald 2019-11-18 20:04:47 -05:00 committed by GitHub
commit b8fc8382ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@ if RUBY_VERSION >= '1.9'
]
SimpleCov.start do
add_filter '/spec/'
add_filter '/vendor/'
add_filter ['/spec/', '/vendor/', 'strategy_macros.rb']
minimum_coverage(92.5)
maximum_coverage_drop(0.01)
end
end