This repository was archived by the owner on Jul 16, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
codecov_cli/services/upload Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments