Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix typo in help description #394

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion codecov_cli/commands/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def _turn_env_vars_into_dict(ctx, params, value):
),
click.option(
"--disable-search",
help="Disable search for coverage files. This is helpful when specifying what files you want to uload with the --file option.",
help="Disable search for coverage files. This is helpful when specifying what files you want to upload with the --file option.",
is_flag=True,
default=False,
),
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/test_invoke_upload_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_upload_process_options(mocker):
" disable uploading other files.",
" --disable-search Disable search for coverage files. This is",
" helpful when specifying what files you want to",
" uload with the --file option.",
" upload with the --file option.",
" --disable-file-fixes Disable file fixes to ignore common lines from",
" coverage (e.g. blank lines or empty brackets)",
" -b, --build, --build-code TEXT Specify the build number manually",
Expand Down
Loading