Skip to content

Commit

Permalink
Merge branch 'main' into joseph/fix-tokenless
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-codecov authored Dec 3, 2024
2 parents 556d4a7 + 193e4be commit 0c472db
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion codecov_cli/commands/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def _turn_env_vars_into_dict(ctx, params, value):
"--handle-no-reports-found",
"handle_no_reports_found",
is_flag=True,
help="Raise no excpetions when no coverage reports found.",
help="Raise no exceptions when no coverage reports found.",
),
click.option(
"--report-type",
Expand Down
2 changes: 1 addition & 1 deletion codecov_cli/services/upload/file_finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"*junit*.xml",
"*test*.xml",
# the actual JUnit (Java) prefixes the tests with "TEST-"
"*TEST-*.xml"
"*TEST-*.xml",
]

coverage_files_excluded_patterns = [
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/test_invoke_upload_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def test_upload_coverage_options(mocker):
" -d, --dry-run Don't upload files to Codecov",
" --legacy, --use-legacy-uploader",
" Use the legacy upload endpoint",
" --handle-no-reports-found Raise no excpetions when no coverage reports",
" --handle-no-reports-found Raise no exceptions when no coverage reports",
" found.",
" --report-type [coverage|test_results]",
" The type of the file to upload, coverage by",
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 @@ -114,7 +114,7 @@ def test_upload_process_options(mocker):
" -d, --dry-run Don't upload files to Codecov",
" --legacy, --use-legacy-uploader",
" Use the legacy upload endpoint",
" --handle-no-reports-found Raise no excpetions when no coverage reports",
" --handle-no-reports-found Raise no exceptions when no coverage reports",
" found.",
" --report-type [coverage|test_results]",
" The type of the file to upload, coverage by",
Expand Down

0 comments on commit 0c472db

Please sign in to comment.