Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

fix typo #49

Merged
merged 1 commit into from
Dec 18, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions codecov/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def main(*argv, **kwargs):
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")
basics.add_argument('--file', '-f', nargs="*", default=None, help="Target a specific file for uploading")
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")
basics.add_argument('--no-fail', action="store_true", default=False, help="(DEPRECIATED default true) If Codecov fails do not fail CI build.")
basics.add_argument('--no-fail', action="store_true", default=False, help="(DEPRECATED default true) If Codecov fails do not fail CI build.")
basics.add_argument('--required', action="store_true", default=False, help="If Codecov fails it will exit 1: failing the CI build.")

gcov = parser.add_argument_group('======================== gcov ========================')
Expand Down Expand Up @@ -251,7 +251,7 @@ def main(*argv, **kwargs):
language = None

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

# Detect CI
# ---------
Expand Down