Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

Commit 6354ac2

Browse files
authored
Replace coverage merge with coverage combine
Whether "merge" is an old directive or just one mistaken for "combine", `coverage merge` would always fail as coveragepy does not have that as an actual command.
1 parent adc22c1 commit 6354ac2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codecov/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ def main(*argv, **kwargs):
660660
if os.path.exists(opj(os.getcwd(), '.coverage')) and not os.path.exists(opj(os.getcwd(), 'coverage.xml')):
661661
if glob.glob(opj(os.getcwd(), '.coverage.*')):
662662
write(' Mergeing coverage reports')
663-
try_to_run('coverage merge')
663+
try_to_run('coverage combine')
664664

665665
write(' Generating coverage xml reports for Python')
666666
# using `-i` to ignore "No source for code" error

0 commit comments

Comments
 (0)