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.
2 parents b3bb242 + 0d2713b commit a988f8cCopy full SHA for a988f8c
tests/integration_tests/build/test_coverage.py
@@ -95,7 +95,9 @@ def test_coverage(monkeypatch):
95
if not branch:
96
branch = utils.check_output("git rev-parse --abbrev-ref HEAD").stdout
97
98
- codecov_cmd = f"codecov -f {lcov_file} -F {global_props.host_linux_version}-{global_props.instance}"
+ # -Z flag means "fail on error". There's supposed to be a more descriptive long form in
99
+ # --fail-on-error, but it doesnt work.
100
+ codecov_cmd = f"codecov -Z -f {lcov_file} -F {global_props.host_linux_version}-{global_props.instance}"
101
102
if pr_number and pr_number != "false":
103
codecov_cmd += f" -P {pr_number}"
0 commit comments