You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="Forces the analysis step to poll the server instance and wait for the Quality Gate status",
271
+
)
272
+
parser.add_argument(
273
+
"-Dsonar.qualitygate.wait",
274
+
type=bool,
275
+
help="Equivalent to --sonar-qualitygate-wait",
276
+
)
277
+
parser.add_argument(
278
+
"--sonar-qualitygate-timeout",
279
+
"-Dsonar.qualitygate.timeout",
280
+
type=int,
281
+
help="The number of seconds that the scanner should wait for a report to be processed",
282
+
)
283
+
parser.add_argument(
284
+
"--sonar-external-issues-report-paths",
285
+
"-Dsonar.externalIssuesReportPaths",
286
+
type=str,
287
+
help="Comma-delimited list of paths to generic issue reports",
288
+
)
289
+
parser.add_argument(
290
+
"--sonar-sarif-report-paths",
291
+
"-Dsonar.sarifReportPaths",
292
+
type=str,
293
+
help="Comma-delimited list of paths to SARIF issue reports",
294
+
)
295
+
parser.add_argument(
296
+
"--sonar-links-ci", "-Dsonar.links.ci", type=str, help="The URL of the continuous integration system used"
297
+
)
298
+
parser.add_argument(
299
+
"--sonar-links-homepage", "-Dsonar.links.homepage", type=str, help="The URL of the build project home page"
300
+
)
301
+
parser.add_argument(
302
+
"--sonar-links-issue", "-Dsonar.links.issue", type=str, help="The URL to the issue tracker being used"
303
+
)
304
+
parser.add_argument(
305
+
"--sonar-links-scm",
306
+
"-Dsonar.links.scm",
307
+
type=str,
308
+
help="The URL of the build project source code repository",
309
+
)
310
+
parser.add_argument(
311
+
"--sonar-branch-name", "-Dsonar.branch.name", type=str, help="Name of the branch being analyzed"
312
+
)
313
+
parser.add_argument(
314
+
"--sonar-pullrequest-key",
315
+
"-Dsonar.pullrequest.key",
316
+
type=str,
317
+
help="Key of the pull request being analyzed",
318
+
)
319
+
parser.add_argument(
320
+
"--sonar-pullrequest-branch",
321
+
"-Dsonar.pullrequest.branch",
322
+
type=str,
323
+
help="Branch of the pull request being analyzed",
324
+
)
325
+
parser.add_argument(
326
+
"--sonar-pullrequest-base",
327
+
"-Dsonar.pullrequest.base",
328
+
type=str,
329
+
help="Base branch of the pull request being analyzed",
330
+
)
331
+
parser.add_argument(
332
+
"--sonar-newcode-reference-branch",
333
+
"-Dsonar.newCode.referenceBranch",
334
+
type=str,
335
+
help="Reference branch for new code definition",
336
+
)
337
+
parser.add_argument(
338
+
"--sonar-scm-revision",
339
+
"-Dsonar.scm.revision",
340
+
type=str,
341
+
help="Overrides the revision, for instance, the Git sha1, displayed in analysis results",
342
+
)
343
+
parser.add_argument(
344
+
"--sonar-build-string",
345
+
"-Dsonar.buildString",
346
+
type=str,
347
+
help="The string passed with this property will be stored with the analysis and available in the results of api/project_analyses/search, thus allowing you to later identify a specific analysis and obtain its key for use with api/new_code_periods/set on the SPECIFIC_ANALYSIS type",
348
+
)
349
+
parser.add_argument(
350
+
"--sonar-source-encoding",
351
+
"-Dsonar.sourceEncoding",
352
+
type=str,
353
+
help="Encoding of the source files. For example, UTF-8, MacRoman, Shift_JIS",
354
+
)
355
+
parser.add_argument(
356
+
"--sonar-working-directory",
357
+
"-Dsonar.working.directory",
358
+
type=str,
359
+
help="Path to the working directory used by the Sonar scanner during a project analysis to store temporary data",
360
+
)
361
+
parser.add_argument(
362
+
"--sonar-scm-force-reload-all",
363
+
type=bool,
364
+
action=argparse.BooleanOptionalAction,
365
+
help="Set this property to true to load blame information for all files, which may significantly increase analysis duration",
366
+
)
367
+
parser.add_argument(
368
+
"-Dsonar.scm.forceReloadAll",
369
+
type=bool,
370
+
help="Equivalent to --sonar-scm-force-reload-all",
0 commit comments