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: docs/deep-dive-into-hyperexecute-yaml.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1363,6 +1363,7 @@ if your test loads jquery static library multiple times and for some reason it i
1363
1363
1364
1364
### `afterAll`
1365
1365
> This flag is deprecated, instead use [`globalPost`](/support/docs/deep-dive-into-hyperexecute-yaml/#globalpost)
1366
+
1366
1367
It is used to run commands after the job has finished. Currently only local directive is allowed, means that all the commands would be run on the same host on which HyperExecute CLI was run. Running commands in `afterAll` on HyperExecute VMs(remote commands) is not yet supported. Users will have access to all the artifacts when these commands would be run.
1367
1368
```yaml
1368
1369
afterAll:
@@ -1379,6 +1380,7 @@ For instance you want to further process the artifacts and create a custom PDF.
1379
1380
1380
1381
## `beforeAll`
1381
1382
> This flag is deprecated, instead use [`globalPre`](/support/docs/deep-dive-into-hyperexecute-yaml/#globalpre)
1383
+
1382
1384
BeforeAll is used for running pre operations like discovery and payload_update. It can be executed either on local system or on hyperexecute beforeAll VM.
Copy file name to clipboardExpand all lines: docs/hyperexecute-cli-run-tests-on-hyperexecute-grid.md
+24-8Lines changed: 24 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,8 @@ The various flags that are supported are listed below.
74
74
75
75
| Flags | Type | Description|
76
76
|-------|------|------------|
77
+
|[analyze](#analyze)| NA | Analyzes the language and environment supported in your project.|
78
+
|[completion](#completion)| NA | Generates the autocompletion script for HyperExecute for the specified shell. |
77
79
|[--concurrency](#--concurrency)| Numerical | Indicates the number of concurrent sessions on HyperExecute. |
78
80
|[--config](#--config)| string | Custom location for hyperexecute.yaml. |
79
81
|[--download-artifacts](#--download-artifacts)| NA | Download the artifacts for a job. |
@@ -100,6 +102,28 @@ The various flags that are supported are listed below.
100
102
|[--verbose](#--verbose)| NA | Logging of every proxy request to stdout. |
101
103
|[--version](#--version)| NA | Version of the HyperExecute CLI. |
102
104
105
+
### `analyze`
106
+
This flag runs **HyperExecute Analyze**, which is a language and environment detection tool used to render every language and framework detail the user has in his project, which includes finding private dependencies.
This flag allows you to define the number of concurrent sessions running on HyperExecute. For more information on concurrency, go to [this page](/support/docs/hyperexecute-auto-split-strategy/).
105
129
```bash
@@ -350,14 +374,6 @@ This flag indicates the version of HyperExecute CLI binary that you are running
350
374
```
351
375
***
352
376
353
-
### `analyze`
354
-
This flag runs **HyperExecute Analyze**, which is a language and environment detection tool used to render every language and framework detail the user has in his project, which includes finding private dependencies.
355
-
356
-
```bash
357
-
hyperexecute analyze
358
-
```
359
-
***
360
-
361
377
## Trigger your Test from HyperExecute CLI
362
378
363
379
In order to trigger your job on HyperExecute, execute the following command in your terminal. You will need to insert the name of your YAML file in place of the `RELATIVE_PATH_OF_YOUR_YAML_FILE` before running this command.
0 commit comments