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

Commit 2e3d4c6

Browse files
Fix spelling of commands
1 parent b2674e0 commit 2e3d4c6

File tree

6 files changed

+19
-12
lines changed

6 files changed

+19
-12
lines changed

codecov_cli/commands/commit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"--pr",
2525
"--pull-request-number",
2626
"pull_request_number",
27-
help="Specify the pull request number mannually. Used to override pre-existing CI environment variables",
27+
help="Specify the pull request number manually. Used to override pre-existing CI environment variables",
2828
cls=CodecovOption,
2929
fallback_field=FallbackFieldEnum.pull_request_number,
3030
)

codecov_cli/commands/report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"--pr",
2222
"--pull-request-number",
2323
"pull_request_number",
24-
help="Specify the pull request number mannually. Used to override pre-existing CI environment variables",
24+
help="Specify the pull request number manually. Used to override pre-existing CI environment variables",
2525
cls=CodecovOption,
2626
fallback_field=FallbackFieldEnum.pull_request_number,
2727
)

codecov_cli/commands/upload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def _turn_env_vars_into_dict(ctx, params, value):
124124
"--pr",
125125
"--pull-request-number",
126126
"pull_request_number",
127-
help="Specify the pull request number mannually. Used to override pre-existing CI environment variables",
127+
help="Specify the pull request number manually. Used to override pre-existing CI environment variables",
128128
cls=CodecovOption,
129129
fallback_field=FallbackFieldEnum.pull_request_number,
130130
),

codecovcli_commands

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Options:
3131
--parent-sha TEXT SHA (with 40 chars) of what should be the
3232
parent of this commit
3333
-P, --pr, --pull-request-number TEXT
34-
Specify the pull request number mannually.
34+
Specify the pull request number manually.
3535
Used to override pre-existing CI environment
3636
variables
3737
-B, --branch TEXT Branch to which this commit belongs to
@@ -49,7 +49,7 @@ Options:
4949
--code TEXT The code of the report. If unsure, leave
5050
default
5151
-P, --pr, --pull-request-number TEXT
52-
Specify the pull request number mannually.
52+
Specify the pull request number manually.
5353
Used to override pre-existing CI environment
5454
variables
5555
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) [required]
@@ -109,7 +109,7 @@ Options:
109109
in Codecov UI
110110
-B, --branch TEXT Branch to which this commit belongs to
111111
-P, --pr, --pull-request-number TEXT
112-
Specify the pull request number mannually.
112+
Specify the pull request number manually.
113113
Used to override pre-existing CI environment
114114
variables
115115
-e, --env, --env-var TEXT Specify environment variables to be included
@@ -151,6 +151,13 @@ Usage: codecovcli empty-upload [OPTIONS]
151151

152152
Options:
153153
--force
154+
--parent-sha TEXT SHA (with 40 chars) of what should be the
155+
parent of this commit
156+
-P, --pr, --pull-request-number TEXT
157+
Specify the pull request number manually.
158+
Used to override pre-existing CI environment
159+
variables
160+
-B, --branch TEXT Branch to which this commit belongs to
154161
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) [required]
155162
-Z, --fail-on-error Exit with non-zero code in case of error
156163
--git-service [github|gitlab|bitbucket|github_enterprise|gitlab_enterprise|bitbucket_server]
@@ -293,7 +300,7 @@ Options:
293300
in Codecov UI
294301
-B, --branch TEXT Branch to which this commit belongs to
295302
-P, --pr, --pull-request-number TEXT
296-
Specify the pull request number mannually.
303+
Specify the pull request number manually.
297304
Used to override pre-existing CI environment
298305
variables
299306
-e, --env, --env-var TEXT Specify environment variables to be included
@@ -369,7 +376,7 @@ Options:
369376
in Codecov UI
370377
-B, --branch TEXT Branch to which this commit belongs to
371378
-P, --pr, --pull-request-number TEXT
372-
Specify the pull request number mannually.
379+
Specify the pull request number manually.
373380
Used to override pre-existing CI environment
374381
variables
375382
-e, --env, --env-var TEXT Specify environment variables to be included

tests/commands/test_invoke_upload_coverage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ def test_upload_coverage_options(mocker):
106106
" Codecov UI",
107107
" -B, --branch TEXT Branch to which this commit belongs to",
108108
" -P, --pr, --pull-request-number TEXT",
109-
" Specify the pull request number mannually.",
110-
" Used to override pre-existing CI environment",
109+
" Specify the pull request number manually. Used",
110+
" to override pre-existing CI environment",
111111
" variables",
112112
" -e, --env, --env-var TEXT Specify environment variables to be included",
113113
" with this build.",

tests/commands/test_invoke_upload_process.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ def test_upload_process_options(mocker):
106106
" Codecov UI",
107107
" -B, --branch TEXT Branch to which this commit belongs to",
108108
" -P, --pr, --pull-request-number TEXT",
109-
" Specify the pull request number mannually.",
110-
" Used to override pre-existing CI environment",
109+
" Specify the pull request number manually. Used",
110+
" to override pre-existing CI environment",
111111
" variables",
112112
" -e, --env, --env-var TEXT Specify environment variables to be included",
113113
" with this build.",

0 commit comments

Comments
 (0)