8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a05e49 commit 3e1c078Copy full SHA for 3e1c078
codecov/__init__.py
@@ -605,9 +605,15 @@ def main(*argv, **kwargs):
605
write('XX> Skip processing gcov')
606
607
else:
608
+ dont_search_here = (
609
+ "-not -path ./bower_components/** "
610
+ "-not -path ./node_modules/** "
611
+ "-not -path ./vendor/**"
612
+ )
613
write('==> Processing gcov (disable by -X gcov)')
- cmd = "find %s -type f -name '*.gcno' %s -exec %s -pb %s {} +" % (
614
+ cmd = "find %s %s -type f -name '*.gcno' %s -exec %s -pb %s {} +" % (
615
(codecov.gcov_root or root),
616
+ dont_search_here,
617
" ".join(map(lambda a: "-not -path '%s'" % a, codecov.gcov_glob)),
618
(codecov.gcov_exec or ''),
619
(codecov.gcov_args or ''))
0 commit comments