Skip to content

Commit aec3b28

Browse files
Merge branch 'main' into codecov-entrypoint
2 parents adc7be3 + 4bf285c commit aec3b28

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

codecov_cli/services/upload/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def do_upload_logic(
102102
except click.ClickException as exp:
103103
if handle_no_reports_found:
104104
logger.info(
105-
"No coverage reports found. Triggering notificaions without uploading."
105+
"No coverage reports found. Triggering notifications without uploading."
106106
)
107107
upload_completion_logic(
108108
commit_sha=commit_sha,
@@ -116,7 +116,7 @@ def do_upload_logic(
116116
error=None,
117117
warnings=None,
118118
status_code=200,
119-
text="No coverage reports found. Triggering notificaions without uploading.",
119+
text="No coverage reports found. Triggering notifications without uploading.",
120120
)
121121
else:
122122
raise exp

codecov_cli/services/upload/file_finder.py

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@
122122
"*.yaml",
123123
"*/classycle/report.xml",
124124
"*codecov.yml",
125+
"codecov.yaml",
125126
"*~",
126127
".*coveragerc",
127128
".coverage*",

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ tree-sitter==0.20.2
7373
# via codecov-cli (setup.py)
7474
typing-extensions==4.12.2
7575
# via opentelemetry-sdk
76-
urllib3==2.0.6
76+
urllib3==2.2.2
7777
# via
7878
# requests
7979
# responses

tests/services/upload/test_upload_service.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -467,14 +467,14 @@ def side_effect(*args, **kwargs):
467467
assert out_bytes == [
468468
(
469469
"info",
470-
"No coverage reports found. Triggering notificaions without uploading.",
470+
"No coverage reports found. Triggering notifications without uploading.",
471471
),
472472
]
473473
assert res == RequestResult(
474474
error=None,
475475
warnings=None,
476476
status_code=200,
477-
text="No coverage reports found. Triggering notificaions without uploading.",
477+
text="No coverage reports found. Triggering notifications without uploading.",
478478
)
479479
mock_select_preparation_plugins.assert_called_with(
480480
cli_config,

0 commit comments

Comments
 (0)