From 48919e1a072245d1ef0fe3d07d388ba904f27951 Mon Sep 17 00:00:00 2001 From: AIM | Nara <169148671+aim-nara@users.noreply.github.com> Date: Mon, 2 Sep 2024 19:10:58 +0900 Subject: [PATCH] Fix documentation of `do-upload --report-type` --- codecov_cli/commands/upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codecov_cli/commands/upload.py b/codecov_cli/commands/upload.py index 3d6af124c..e2303c9ac 100644 --- a/codecov_cli/commands/upload.py +++ b/codecov_cli/commands/upload.py @@ -164,7 +164,7 @@ def _turn_env_vars_into_dict(ctx, params, value): ), click.option( "--report-type", - help="The type of the file to upload, coverage by default. Possible values are: testing, coverage.", + help="The type of the file to upload, coverage by default. Possible values are: test_results, coverage.", default="coverage", type=click.Choice(["coverage", "test_results"]), ),