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

Commit 10a110d

Browse files
authored
Add vendor to invalid directories (#100)
1 parent 4d85593 commit 10a110d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### `0.2.11`
2+
- Add vendor/ to invalid directories
3+
14
### `0.2.10`
25
- Adds better logging on error cases
36
- Add more invalid directories in the network

codecov.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
1313
s.required_ruby_version = '>=2.4'
1414
s.summary = 'hosted code coverage ruby/rails reporter'
1515
s.test_files = ['test/test_codecov.rb']
16-
s.version = '0.2.10'
16+
s.version = '0.2.11'
1717

1818
s.add_dependency 'json'
1919
s.add_dependency 'simplecov'

lib/codecov.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
require 'zlib'
88

99
class SimpleCov::Formatter::Codecov
10-
VERSION = '0.2.10'
10+
VERSION = '0.2.11'
1111

1212
### CIs
1313
RECOGNIZED_CIS = [
@@ -512,7 +512,8 @@ def file_network
512512
'node_modules/',
513513
'public/',
514514
'storage/',
515-
'tmp/'
515+
'tmp/',
516+
'vendor/'
516517
]
517518

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

0 commit comments

Comments
 (0)