-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathcodecovcli_commands
395 lines (367 loc) · 21.9 KB
/
codecovcli_commands
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
Usage: codecovcli [OPTIONS] COMMAND [ARGS]...
Options:
--auto-load-params-from [CircleCI|GithubActions|GitlabCI|Bitbucket|Bitrise|AppVeyor|Woodpecker|Heroku|DroneCI|BuildKite|AzurePipelines|Jenkins|CirrusCI|Teamcity|Travis|AWSCodeBuild|GoogleCloudBuild|Local]
--codecov-yml-path PATH
-u, --enterprise-url, --url TEXT
Change the upload host (Enterprise use)
-v, --verbose Use verbose logging
--disable-telem Disable sending telemetry data to Codecov
--version Show the version and exit.
--help Show this message and exit.
Commands:
create-commit
create-report
create-report-results
do-upload
empty-upload
get-report-results
label-analysis
pr-base-picking
process-test-results
send-notifications
static-analysis
upload-coverage
upload-process
Usage: codecovcli create-commit [OPTIONS]
Options:
--parent-sha TEXT SHA (with 40 chars) of what should be the
parent of this commit
-P, --pr, --pull-request-number TEXT
Specify the pull request number mannually.
Used to override pre-existing CI environment
variables
-B, --branch TEXT Branch to which this commit belongs to
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) [required]
-Z, --fail-on-error Exit with non-zero code in case of error
--git-service [github|gitlab|bitbucket|github_enterprise|gitlab_enterprise|bitbucket_server]
-t, --token TEXT Codecov upload token
-r, --slug TEXT owner/repo slug used instead of the private
repo token in Self-hosted
-h, --help Show this message and exit.
Usage: codecovcli create-report [OPTIONS]
Options:
--code TEXT The code of the report. If unsure, leave
default
-P, --pr, --pull-request-number TEXT
Specify the pull request number mannually.
Used to override pre-existing CI environment
variables
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) [required]
-Z, --fail-on-error Exit with non-zero code in case of error
--git-service [github|gitlab|bitbucket|github_enterprise|gitlab_enterprise|bitbucket_server]
-t, --token TEXT Codecov upload token
-r, --slug TEXT owner/repo slug used instead of the private
repo token in Self-hosted
-h, --help Show this message and exit.
Usage: codecovcli create-report-results [OPTIONS]
Options:
--code TEXT The code of the report. If unsure, leave
default
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) [required]
-Z, --fail-on-error Exit with non-zero code in case of error
--git-service [github|gitlab|bitbucket|github_enterprise|gitlab_enterprise|bitbucket_server]
-t, --token TEXT Codecov upload token
-r, --slug TEXT owner/repo slug used instead of the private
repo token in Self-hosted
-h, --help Show this message and exit.
Usage: codecovcli do-upload [OPTIONS]
Options:
--code, --report-code TEXT The code of the report. If unsure, leave
default
--network-root-folder PATH Root folder from which to consider paths on
the network section [default: (Current
working directory)]
-s, --dir, --coverage-files-search-root-folder, --files-search-root-folder PATH
Folder where to search for coverage files
[default: (Current Working Directory)]
--exclude, --coverage-files-search-exclude-folder, --files-search-exclude-folder PATH
Folders to exclude from search
-f, --file, --coverage-files-search-direct-file, --files-search-direct-file PATH
Explicit files to upload. These will be
added to the coverage files found for
upload. If you wish to only upload the
specified files, please consider using
--disable-search to disable uploading other
files.
--disable-search Disable search for coverage files. This is
helpful when specifying what files you want
to upload with the --file option.
--disable-file-fixes Disable file fixes to ignore common lines
from coverage (e.g. blank lines or empty
brackets)
-b, --build, --build-code TEXT Specify the build number manually
--build-url TEXT The URL of the build where this is running
--job-code TEXT
-n, --name TEXT Custom defined name of the upload. Visible
in Codecov UI
-B, --branch TEXT Branch to which this commit belongs to
-P, --pr, --pull-request-number TEXT
Specify the pull request number mannually.
Used to override pre-existing CI environment
variables
-e, --env, --env-var TEXT Specify environment variables to be included
with this build.
-F, --flag TEXT Flag the upload to group coverage metrics.
Multiple flags allowed.
--plugin TEXT
-d, --dry-run Don't upload files to Codecov
--legacy, --use-legacy-uploader
Use the legacy upload endpoint
--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
default. Possible values are: testing,
coverage.
--network-filter TEXT Specify a filter on the files listed in the
network section of the Codecov report. This
will only add files whose path begin with
the specified filter. Useful for upload-
specific path fixing
--network-prefix TEXT Specify a prefix on files listed in the
network section of the Codecov report.
Useful to help resolve path fixing
--gcov-args TEXT Extra arguments to pass to gcov
--gcov-ignore TEXT Paths to ignore during gcov gathering
--gcov-include TEXT Paths to include during gcov gathering
--gcov-executable TEXT gcov executable to run. Defaults to 'gcov'
--swift-project TEXT Specify the swift project
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) [required]
-Z, --fail-on-error Exit with non-zero code in case of error
--git-service [github|gitlab|bitbucket|github_enterprise|gitlab_enterprise|bitbucket_server]
-t, --token TEXT Codecov upload token
-r, --slug TEXT owner/repo slug used instead of the private
repo token in Self-hosted
-h, --help Show this message and exit.
Usage: codecovcli empty-upload [OPTIONS]
Options:
--force
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) [required]
-Z, --fail-on-error Exit with non-zero code in case of error
--git-service [github|gitlab|bitbucket|github_enterprise|gitlab_enterprise|bitbucket_server]
-t, --token TEXT Codecov upload token
-r, --slug TEXT owner/repo slug used instead of the private
repo token in Self-hosted
-h, --help Show this message and exit.
Usage: codecovcli get-report-results [OPTIONS]
Options:
--code TEXT The code of the report. If unsure, leave
default
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) [required]
-Z, --fail-on-error Exit with non-zero code in case of error
--git-service [github|gitlab|bitbucket|github_enterprise|gitlab_enterprise|bitbucket_server]
-t, --token TEXT Codecov upload token
-r, --slug TEXT owner/repo slug used instead of the private
repo token in Self-hosted
-h, --help Show this message and exit.
Usage: codecovcli label-analysis [OPTIONS]
Options:
--token TEXT The static analysis token (NOT the same
token as upload) [required]
--head-sha TEXT Commit SHA (with 40 chars) [required]
--base-sha TEXT Commit SHA (with 40 chars) [required]
--runner-name, --runner TEXT Runner to use
--max-wait-time INTEGER Max time (in seconds) to wait for the label
analysis result before falling back to
running all tests. Default is to wait
forever.
--dry-run Print list of tests to run AND tests skipped
AND options that need to be added to the
test runner to stdout. Choose format with
--dry-run-format option. Default is JSON.
--dry-run-format [json|space-separated-list]
Format in which --dry-run data is printed.
Default is JSON.
--runner-param TEXT
-h, --help Show this message and exit.
Usage: codecovcli pr-base-picking [OPTIONS]
Options:
--base-sha TEXT Base commit SHA (with 40 chars) [required]
--pr TEXT Pull Request id to associate commit with
--slug TEXT owner/repo slug
-t, --token TEXT Codecov upload token
--service TEXT Specify the service provider of the repo e.g. github
-h, --help Show this message and exit.
Usage: codecovcli process-test-results [OPTIONS]
Options:
-s, --dir, --files-search-root-folder PATH
Folder where to search for test results
files [default: (Current Working
Directory)]
-f, --file, --files-search-direct-file PATH
Explicit files to upload. These will be
added to the test results files to be
processed. If you wish to only process the
specified files, please consider using
--disable-search to disable processing other
files.
--exclude, --files-search-exclude-folder PATH
Folders to exclude from search
--disable-search Disable search for coverage files. This is
helpful when specifying what files you want
to upload with the --file option.
--github-token TEXT If specified, output the message to the
specified GitHub PR.
-h, --help Show this message and exit.
Usage: codecovcli send-notifications [OPTIONS]
Options:
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) [required]
-Z, --fail-on-error Exit with non-zero code in case of error
--git-service [github|gitlab|bitbucket|github_enterprise|gitlab_enterprise|bitbucket_server]
-t, --token TEXT Codecov upload token
-r, --slug TEXT owner/repo slug used instead of the private
repo token in Self-hosted
-h, --help Show this message and exit.
Usage: codecovcli static-analysis [OPTIONS]
Options:
--foldertosearch PATH Folder to search
--numberprocesses INTEGER number of processes to use
--pattern TEXT file pattern to search for
--force / --no-force
--commit-sha TEXT Commit SHA (with 40 chars) [required]
--folders-to-exclude PATH Folders not to search
--token TEXT The static analysis token (NOT the same token as
upload) [required]
-h, --help Show this message and exit.
Usage: codecovcli upload-coverage [OPTIONS]
Options:
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) [required]
-Z, --fail-on-error Exit with non-zero code in case of error
--git-service [github|gitlab|bitbucket|github_enterprise|gitlab_enterprise|bitbucket_server]
-t, --token TEXT Codecov upload token
-r, --slug TEXT owner/repo slug used instead of the private
repo token in Self-hosted
--code, --report-code TEXT The code of the report. If unsure, leave
default
--network-root-folder PATH Root folder from which to consider paths on
the network section [default: (Current
working directory)]
-s, --dir, --coverage-files-search-root-folder, --files-search-root-folder PATH
Folder where to search for coverage files
[default: (Current Working Directory)]
--exclude, --coverage-files-search-exclude-folder, --files-search-exclude-folder PATH
Folders to exclude from search
-f, --file, --coverage-files-search-direct-file, --files-search-direct-file PATH
Explicit files to upload. These will be
added to the coverage files found for
upload. If you wish to only upload the
specified files, please consider using
--disable-search to disable uploading other
files.
--disable-search Disable search for coverage files. This is
helpful when specifying what files you want
to upload with the --file option.
--disable-file-fixes Disable file fixes to ignore common lines
from coverage (e.g. blank lines or empty
brackets)
-b, --build, --build-code TEXT Specify the build number manually
--build-url TEXT The URL of the build where this is running
--job-code TEXT
-n, --name TEXT Custom defined name of the upload. Visible
in Codecov UI
-B, --branch TEXT Branch to which this commit belongs to
-P, --pr, --pull-request-number TEXT
Specify the pull request number mannually.
Used to override pre-existing CI environment
variables
-e, --env, --env-var TEXT Specify environment variables to be included
with this build.
-F, --flag TEXT Flag the upload to group coverage metrics.
Multiple flags allowed.
--plugin TEXT
-d, --dry-run Don't upload files to Codecov
--legacy, --use-legacy-uploader
Use the legacy upload endpoint
--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
default. Possible values are: testing,
coverage.
--network-filter TEXT Specify a filter on the files listed in the
network section of the Codecov report. This
will only add files whose path begin with
the specified filter. Useful for upload-
specific path fixing
--network-prefix TEXT Specify a prefix on files listed in the
network section of the Codecov report.
Useful to help resolve path fixing
--gcov-args TEXT Extra arguments to pass to gcov
--gcov-ignore TEXT Paths to ignore during gcov gathering
--gcov-include TEXT Paths to include during gcov gathering
--gcov-executable TEXT gcov executable to run. Defaults to 'gcov'
--swift-project TEXT Specify the swift project
--parent-sha TEXT SHA (with 40 chars) of what should be the
parent of this commit
-h, --help Show this message and exit.
Usage: codecovcli upload-process [OPTIONS]
Options:
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) [required]
-Z, --fail-on-error Exit with non-zero code in case of error
--git-service [github|gitlab|bitbucket|github_enterprise|gitlab_enterprise|bitbucket_server]
-t, --token TEXT Codecov upload token
-r, --slug TEXT owner/repo slug used instead of the private
repo token in Self-hosted
--code, --report-code TEXT The code of the report. If unsure, leave
default
--network-root-folder PATH Root folder from which to consider paths on
the network section [default: (Current
working directory)]
-s, --dir, --coverage-files-search-root-folder, --files-search-root-folder PATH
Folder where to search for coverage files
[default: (Current Working Directory)]
--exclude, --coverage-files-search-exclude-folder, --files-search-exclude-folder PATH
Folders to exclude from search
-f, --file, --coverage-files-search-direct-file, --files-search-direct-file PATH
Explicit files to upload. These will be
added to the coverage files found for
upload. If you wish to only upload the
specified files, please consider using
--disable-search to disable uploading other
files.
--disable-search Disable search for coverage files. This is
helpful when specifying what files you want
to upload with the --file option.
--disable-file-fixes Disable file fixes to ignore common lines
from coverage (e.g. blank lines or empty
brackets)
-b, --build, --build-code TEXT Specify the build number manually
--build-url TEXT The URL of the build where this is running
--job-code TEXT
-n, --name TEXT Custom defined name of the upload. Visible
in Codecov UI
-B, --branch TEXT Branch to which this commit belongs to
-P, --pr, --pull-request-number TEXT
Specify the pull request number mannually.
Used to override pre-existing CI environment
variables
-e, --env, --env-var TEXT Specify environment variables to be included
with this build.
-F, --flag TEXT Flag the upload to group coverage metrics.
Multiple flags allowed.
--plugin TEXT
-d, --dry-run Don't upload files to Codecov
--legacy, --use-legacy-uploader
Use the legacy upload endpoint
--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
default. Possible values are: testing,
coverage.
--network-filter TEXT Specify a filter on the files listed in the
network section of the Codecov report. This
will only add files whose path begin with
the specified filter. Useful for upload-
specific path fixing
--network-prefix TEXT Specify a prefix on files listed in the
network section of the Codecov report.
Useful to help resolve path fixing
--gcov-args TEXT Extra arguments to pass to gcov
--gcov-ignore TEXT Paths to ignore during gcov gathering
--gcov-include TEXT Paths to include during gcov gathering
--gcov-executable TEXT gcov executable to run. Defaults to 'gcov'
--swift-project TEXT Specify the swift project
--parent-sha TEXT SHA (with 40 chars) of what should be the
parent of this commit
-h, --help Show this message and exit.