Skip to content

Commit 4fcb681

Browse files
committed
bot: Make grcov ignore parsing errors
1 parent 4b2c150 commit 4fcb681

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bot/code_coverage_bot/grcov.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def report(artifacts, source_dir=None, out_format="covdir", options=[]):
1313
"lcov",
1414
"coveralls+",
1515
), "Unsupported output format"
16-
cmd = ["grcov", "-t", out_format]
16+
cmd = ["grcov", "--ignore-parsing-error", "-t", out_format]
1717

1818
# Coveralls+ is only needed for zero-coverage reports
1919
if out_format == "coveralls+":

0 commit comments

Comments
 (0)