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
$ sf provar manager test run -f <value> [--json] [-y] [-w <value>] [-p <value>] [-o <value>] [-r <value>]
415
+
416
+
FLAGS
417
+
-f, --configuration-file=<value> (required) Path to the configuration file.
418
+
-o, --output=<value> Output to a specific file instead of stdout.
419
+
-p, --polling-interval=<value> [default: 60] Sets the polling interval in seconds. Default is 60 seconds.
420
+
-r, --result-format=<value> [default: human] Format of the test results.
421
+
-w, --wait=<value> Sets the polling timeout in minutes.
422
+
-y, --synchronous Runs command synchronously; if not specified, the command is run asynchronously.
423
+
424
+
GLOBAL FLAGS
425
+
--json Format output as json.
426
+
427
+
DESCRIPTION
428
+
Run tests via Provar Manager.
429
+
430
+
EXAMPLES
431
+
Run tests as per the config/run-grid-test.json configuration file, wait 10 minutes, poll every 30 seconds, and store the results as JSON in the results.json file:
432
+
433
+
$ sf provar manager test run -f config/run-grid-tests.json -w 10 -p 30 -r json -o results.json
434
+
435
+
Run tests as per the config/run-grid-test.json configuration file, wait 20 minutes, and store the results as JUnit in the junit-results.xml file:
436
+
437
+
$ sf provar manager test run -f config/run-grid-tests.json -w 20 -r junit -o junit-results.xml
438
+
439
+
```
440
+
441
+
## `sf provar manager test run report`
442
+
443
+
Check or poll for the status of a test run operation.
444
+
445
+
```
446
+
USAGE
447
+
$ sf provar manager test run report -i <value> [--json] [-r <value>] [-o <value>]
448
+
449
+
FLAGS
450
+
-i, --test-run=<value> (required) Test run ID.
451
+
-o, --output=<value> Output to a specific file instead of stdout.
452
+
-r, --result-format=<value> [default: human] Format of the test results.
453
+
454
+
GLOBAL FLAGS
455
+
--json Format output as json.
456
+
457
+
DESCRIPTION
458
+
Check or poll for the status of a test run operation.
459
+
460
+
EXAMPLES
461
+
Retrieve results for test run 45f70417-df21-4917-a667-abc2ee46dc63 and store the results as JSON in the results.json file
462
+
463
+
$ sf provar manager test run report -i 45f70417-df21-4917-a667-abc2ee46dc63 -r json -o results.json
464
+
465
+
Retrieve results for test run 45f70417-df21-4917-a667-abc2ee46dc63 and store the results as JUnit in the junit-results.xml file:
466
+
467
+
$ sf provar manager test run report -i 45f70417-df21-4917-a667-abc2ee46dc63 -r junit -o junit-results.xml
0 commit comments