Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Add vendor to invalid directories (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu committed Sep 7, 2020
1 parent 4d85593 commit 10a110d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### `0.2.11`
- Add vendor/ to invalid directories

### `0.2.10`
- Adds better logging on error cases
- Add more invalid directories in the network
Expand Down
2 changes: 1 addition & 1 deletion codecov.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>=2.4'
s.summary = 'hosted code coverage ruby/rails reporter'
s.test_files = ['test/test_codecov.rb']
s.version = '0.2.10'
s.version = '0.2.11'

s.add_dependency 'json'
s.add_dependency 'simplecov'
Expand Down
5 changes: 3 additions & 2 deletions lib/codecov.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
require 'zlib'

class SimpleCov::Formatter::Codecov
VERSION = '0.2.10'
VERSION = '0.2.11'

### CIs
RECOGNIZED_CIS = [
Expand Down Expand Up @@ -512,7 +512,8 @@ def file_network
'node_modules/',
'public/',
'storage/',
'tmp/'
'tmp/',
'vendor/'
]

puts [green('==>'), 'Appending file network'].join(' ')
Expand Down

0 comments on commit 10a110d

Please sign in to comment.