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

Commit 022c043

Browse files
author
Steve Peak
authored
Merge pull request #117 from hugovk/patch-1
Fix typos in help message
2 parents bc70732 + 5805403 commit 022c043

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

codecov/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def main(*argv, **kwargs):
201201
epilog="""Upload reports to Codecov""")
202202
basics = parser.add_argument_group('======================== Basics ========================')
203203
basics.add_argument('--version', action='version', version='Codecov py-v'+version+" - https://codecov.io/")
204-
basics.add_argument('--token', '-t', default=os.getenv("CODECOV_TOKEN"), help="Private repository token or @filename for file containing the token. Defaults to $CODECOV_TOKEN. Not required for public repositories on Travis-CI, CircleCI and AppVeyor")
204+
basics.add_argument('--token', '-t', default=os.getenv("CODECOV_TOKEN"), help="Private repository token or @filename for file containing the token. Defaults to $CODECOV_TOKEN. Not required for public repositories on Travis CI, CircleCI and AppVeyor")
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.")
@@ -217,10 +217,10 @@ def main(*argv, **kwargs):
217217
advanced = parser.add_argument_group('======================== Advanced ========================')
218218
advanced.add_argument('-X', '--disable', nargs="*", default=[], help="Disable features. Accepting **search** to disable crawling through directories, **detect** to disable detecting CI provider, **gcov** disable gcov commands, `pycov` disables running python `coverage xml`, **fix** to disable report adjustments http://bit.ly/1O4eBpt")
219219
advanced.add_argument('--root', default=None, help="Project directory. Default: current direcory or provided in CI environment variables")
220-
advanced.add_argument('--commit', '-c', default=None, help="Commit sha, set automatically")
220+
advanced.add_argument('--commit', '-c', default=None, help="Commit SHA, set automatically")
221221
advanced.add_argument('--branch', '-b', default=None, help="Branch name")
222-
advanced.add_argument('--build', default=None, help="Specify a custom build number to distinguish ci jobs, provided automatically for supported ci companies")
223-
advanced.add_argument('--pr', default=None, help="Specify a custom pr number, provided automatically for supported ci companies")
222+
advanced.add_argument('--build', default=None, help="Specify a custom build number to distinguish CI jobs, provided automatically for supported CI companies")
223+
advanced.add_argument('--pr', default=None, help="Specify a custom pr number, provided automatically for supported CI companies")
224224
advanced.add_argument('--tag', default=None, help="Git tag")
225225

226226
enterprise = parser.add_argument_group('======================== Enterprise ========================')
@@ -230,7 +230,7 @@ def main(*argv, **kwargs):
230230

231231
debugging = parser.add_argument_group('======================== Debugging ========================')
232232
debugging.add_argument('--dump', action="store_true", help="Dump collected data and do not send to Codecov")
233-
debugging.add_argument('-v', '--verbose', action="store_true", help="No comfigured yet")
233+
debugging.add_argument('-v', '--verbose', action="store_true", help="Not configured yet")
234234
debugging.add_argument('--no-color', action="store_true", help="Do not output with color")
235235

236236
# Parse Arguments

0 commit comments

Comments
 (0)