|
25 | 25 | @click.pass_context |
26 | 26 | def upload_process( |
27 | 27 | ctx: CommandContext, |
28 | | - commit_sha: str, |
29 | | - report_code: str, |
| 28 | + branch: typing.Optional[str], |
30 | 29 | build_code: typing.Optional[str], |
31 | 30 | build_url: typing.Optional[str], |
32 | | - job_code: typing.Optional[str], |
| 31 | + commit_sha: str, |
| 32 | + disable_file_fixes: bool, |
| 33 | + disable_search: bool, |
| 34 | + dry_run: bool, |
33 | 35 | env_vars: typing.Dict[str, str], |
| 36 | + fail_on_error: bool, |
| 37 | + files_search_exclude_folders: typing.List[pathlib.Path], |
| 38 | + files_search_explicitly_listed_files: typing.List[pathlib.Path], |
| 39 | + files_search_root_folder: pathlib.Path, |
34 | 40 | flags: typing.List[str], |
| 41 | + gcov_args: typing.Optional[str], |
| 42 | + gcov_executable: typing.Optional[str], |
| 43 | + gcov_ignore: typing.Optional[str], |
| 44 | + gcov_include: typing.Optional[str], |
| 45 | + git_service: typing.Optional[str], |
| 46 | + handle_no_reports_found: bool, |
| 47 | + job_code: typing.Optional[str], |
35 | 48 | name: typing.Optional[str], |
36 | 49 | network_filter: typing.Optional[str], |
37 | 50 | network_prefix: typing.Optional[str], |
38 | 51 | network_root_folder: pathlib.Path, |
39 | | - files_search_root_folder: pathlib.Path, |
40 | | - files_search_exclude_folders: typing.List[pathlib.Path], |
41 | | - files_search_explicitly_listed_files: typing.List[pathlib.Path], |
42 | | - disable_search: bool, |
43 | | - disable_file_fixes: bool, |
44 | | - token: typing.Optional[str], |
| 52 | + parent_sha: typing.Optional[str], |
45 | 53 | plugin_names: typing.List[str], |
46 | | - branch: typing.Optional[str], |
47 | | - slug: typing.Optional[str], |
48 | 54 | pull_request_number: typing.Optional[str], |
49 | | - use_legacy_uploader: bool, |
50 | | - fail_on_error: bool, |
51 | | - dry_run: bool, |
52 | | - git_service: typing.Optional[str], |
53 | | - parent_sha: typing.Optional[str], |
54 | | - handle_no_reports_found: bool, |
| 55 | + report_code: str, |
55 | 56 | report_type: str, |
| 57 | + slug: typing.Optional[str], |
| 58 | + token: typing.Optional[str], |
| 59 | + use_legacy_uploader: bool, |
56 | 60 | ): |
57 | 61 | args = get_cli_args(ctx) |
58 | 62 | logger.debug( |
@@ -85,31 +89,35 @@ def upload_process( |
85 | 89 | ) |
86 | 90 | ctx.invoke( |
87 | 91 | do_upload, |
88 | | - commit_sha=commit_sha, |
89 | | - report_code=report_code, |
| 92 | + branch=branch, |
90 | 93 | build_code=build_code, |
91 | 94 | build_url=build_url, |
92 | | - job_code=job_code, |
| 95 | + commit_sha=commit_sha, |
| 96 | + disable_file_fixes=disable_file_fixes, |
| 97 | + disable_search=disable_search, |
| 98 | + dry_run=dry_run, |
93 | 99 | env_vars=env_vars, |
| 100 | + fail_on_error=fail_on_error, |
| 101 | + files_search_exclude_folders=files_search_exclude_folders, |
| 102 | + files_search_explicitly_listed_files=files_search_explicitly_listed_files, |
| 103 | + files_search_root_folder=files_search_root_folder, |
94 | 104 | flags=flags, |
| 105 | + gcov_args=gcov_args, |
| 106 | + gcov_executable=gcov_executable, |
| 107 | + gcov_ignore=gcov_ignore, |
| 108 | + gcov_include=gcov_include, |
| 109 | + git_service=git_service, |
| 110 | + handle_no_reports_found=handle_no_reports_found, |
| 111 | + job_code=job_code, |
95 | 112 | name=name, |
96 | 113 | network_filter=network_filter, |
97 | 114 | network_prefix=network_prefix, |
98 | 115 | network_root_folder=network_root_folder, |
99 | | - files_search_root_folder=files_search_root_folder, |
100 | | - files_search_exclude_folders=files_search_exclude_folders, |
101 | | - files_search_explicitly_listed_files=files_search_explicitly_listed_files, |
102 | | - disable_search=disable_search, |
103 | | - token=token, |
104 | 116 | plugin_names=plugin_names, |
105 | | - branch=branch, |
106 | | - slug=slug, |
107 | 117 | pull_request_number=pull_request_number, |
108 | | - use_legacy_uploader=use_legacy_uploader, |
109 | | - fail_on_error=fail_on_error, |
110 | | - dry_run=dry_run, |
111 | | - git_service=git_service, |
112 | | - handle_no_reports_found=handle_no_reports_found, |
113 | | - disable_file_fixes=disable_file_fixes, |
| 118 | + report_code=report_code, |
114 | 119 | report_type=report_type, |
| 120 | + slug=slug, |
| 121 | + token=token, |
| 122 | + use_legacy_uploader=use_legacy_uploader, |
115 | 123 | ) |
0 commit comments