8000 Merge pull request #49 from arvidn/master · codecov/codecov-python@e2ea0e9 · GitHub
[go: up one dir, main page]

Skip to content
Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on May 21, 2025. It is now read-only.

Commit e2ea0e9

Browse files
author
Steve Peak
committed
Merge pull request #49 from arvidn/master
fix typo
2 parents 5002055 + 99e936b commit e2ea0e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codecov/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def main(*argv, **kwargs):
210210
basics.add_argument('--token', '-t', default=os.getenv("CODECOV_TOKEN"), help="Private repository token. Not required for public repositories on Travis-CI, CircleCI and AppVeyor")
211211
basics.add_argument('--file', '-f', nargs="*", default=None, help="Target a specific file for uploading")
212212
basics.add_argument('--env', '-e', nargs="*", default=os.getenv("CODECOV_ENV"), help="Store environment variables to help distinguish CI builds. Example: http://bit.ly/1ElohCu")
213-
basics.add_argument('--no-fail', action="store_true", default=False, help="(DEPRECIATED default true) If Codecov fails do not fail CI build.")
213+
basics.add_argument('--no-fail', action="store_true", default=False, help="(DEPRECATED default true) If Codecov fails do not fail CI build.")
214214
basics.add_argument('--required', action="store_true", default=False, help="If Codecov fails it will exit 1: failing the CI build.")
215215

216216
gcov = parser.add_argument_group('======================== gcov ========================')
@@ -251,7 +251,7 @@ def main(*argv, **kwargs):
251251
language = None
252252

253253
if codecov.no_fail:
254-
write('(depreciated) --no-fail is now default. See --help for more information.')
254+
write('(deprecated) --no-fail is now default. See --help for more information.')
255255

256256
# Detect CI
257257
# ---------

0 commit comments

Comments
 (0)
0