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

Commit 34678f8

Browse files
committed
Fix help for --required option
1 parent 809d496 commit 34678f8

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
@@ -205,7 +205,7 @@ def main(*argv, **kwargs):
205205
basics.add_argument('--file', '-f', nargs="*", default=None, help="Target a specific file for uploading")
206206
basics.add_argument('--flags', '-F', nargs="*", default=None, help="Flag these uploaded files with custom labels")
207207
basics.add_argument('--env', '-e', nargs="*", default=None, help="Store environment variables to help distinguish CI builds.")
208-
basics.add_argument('--required', action="store_true", default=False, help="If Codecov fails it will exit 1: failing the CI build.")
208+
basics.add_argument('--required', action="store_true", default=False, help="If Codecov fails it will exit 1 - possibly failing the CI build.")
209209
basics.add_argument('--name', '-n', default=None, help="Custom defined name of the upload. Visible in Codecov UI.")
210210

211211
gcov = parser.add_argument_group('======================== gcov ========================')

0 commit comments

Comments
 (0)