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
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,7 @@ table includes the currently implemented options.
65
65
| Option | Sample Value | Description|
66
66
|---|---|---|
67
67
| async | N/A | Run the project without waiting for results. The TestJobID will be printed on the console to make it possible to query status, get reports or cancel the job|
68
+
| printReport | N/A | Print the execution report to the console for synchronous job after it is completed |
68
69
| timeout| 30 | Specify a timeout for the running job. When the job has been running for the specified number of seconds, the job will fail and the report will include information that it timed out. If not specified, the job will always run until completed|
69
70
| skipdeps | N/A | Do not scan project for dependencies. This will improve performance for large projects without dependencies to external files |
70
71
| testsuite | TestSuite1 | Name of a test suite to run|
@@ -116,6 +117,11 @@ Each job has a job ID, with the command "jobs cancel" a running (or queued) job
116
117
117
118
`testengine jobs status <job ID>`
118
119
120
+
### Print an execution report to the console'
121
+
Each job has a job ID, with the command "jobs printReport" you can print execution report for a completed job to the console. This allows user to view the report without writing it into a file.
122
+
123
+
`testengine jobs printReport <job ID>`
124
+
119
125
### Request an execution report from the server'
120
126
Each job has a job ID, with the command "jobs report" you can request the execution report for a completed job.
121
127
The "output" argument is mandatory, "format" is optional.
0 commit comments