Merge pull request #4033 from jekyll/ignore-more-bundler-directories

Ignore `.bundle` when generating test coverage
This commit is contained in:
Jordon Bedwell 2015-10-16 06:10:35 -05:00
commit 84089f9ebe
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ unless ENV['TRAVIS']
SimpleCov.start('gem') do
add_filter "/vendor/bundle"
add_filter "/vendor/gem"
add_filter ".bundle"
end
end