Skip to content

Commit f7a76d7

Browse files
testim integration update
1 parent de655ca commit f7a76d7

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

docs/hyperexecute-cli-run-tests-on-hyperexecute-grid.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,15 @@ The various flags that are supported are listed below.
7676
|-------|------|------------|
7777
| [analyze](#analyze) | NA | Analyzes the language and environment supported in your project.|
7878
| [completion](#completion) | NA | Generates the autocompletion script for HyperExecute for the specified shell. |
79+
| [serve](#serve) | NA | Starts a server for HyperExecute info APIs |
80+
| [update](#update) | NA | Update the HyperExecute Binary Version |
7981
| [--concurrency](#--concurrency) | Numerical | Indicates the number of concurrent sessions on HyperExecute. |
8082
| [--config](#--config) | string | Custom location for hyperexecute.yaml. |
83+
| [--disable-updates](#--disable-updates) | NA | Disable auto update |
8184
| [--download-artifacts](#--download-artifacts) | NA | Download the artifacts for a job. |
8285
| [--download-artifacts-path](#--download-artifacts-path) | string | Path of the directory to download artifacts for a job |
8386
| [--download-artifacts-zip](#--download-artifacts-zip) | NA | Download the artifacts for a job as a zip. |
84-
| [--download-logs](#--download-logs) | NA | Downloads console logs of your every tests of a job. |
87+
| [--download-logs](#--download-logs) | NA | Downloads console logs of your every tests of a job. |
8588
| [--download-report](#--download-report) | NA | Whether reports have to be downloaded or not. |
8689
| [--force-clean-artifacts](#--force-clean-artifacts) | NA | Download the updated artifacts of your job. |
8790
| [-h, --help](#-h---help) | NA | Help for hyperexecute. |
@@ -124,6 +127,24 @@ hyperexecute completion
124127

125128
***
126129

130+
### `serve`
131+
This flag starts a server for HyperExecute info APIs.
132+
133+
```bash
134+
hyperexecute --user USER_NAME --key ACCESS_KEY serve
135+
```
136+
137+
***
138+
139+
### `update`
140+
This flag updates the hyperexecute binary version.
141+
142+
```bash
143+
hyperexecute update
144+
```
145+
146+
***
147+
127148
### `--concurrency`
128149
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/).
129150
```bash
@@ -139,6 +160,11 @@ This flag allows you to enter a custom location where you can download the Hyper
139160
```
140161
***
141162

163+
### `--disable-updates`
164+
This flag allows you to disable the auto updation of your HyperExecute binary.
165+
166+
***
167+
142168
### `--download-artifacts`
143169
This flag allows you to download all the test related results that are generated by your testing framework. You can use this key if you want to download the artifacts.
144170

@@ -152,6 +178,8 @@ This flag allows you to download all the test related results that are generated
152178
- For Espresso with private devices HyperExecute can download user generated artefacts.
153179
:::
154180

181+
***
182+
155183
### `--download-artifacts-path`
156184
In case you want the artifacts to be downloaded to a specific directory, please provide the exact path followed by the flag as shown in the example below.
157185

@@ -161,6 +189,8 @@ In case you want the artifacts to be downloaded to a specific directory, please
161189
</CodeBlock>
162190
</div>
163191

192+
***
193+
164194
### `--download-artifacts-zip`
165195
If you want to download the zip file of the artifacts for a job.
166196

docs/hyperexecute-testim-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ testDiscovery:
116116
mode: static
117117
command: echo "HYP with Testim"
118118

119-
testRunnerCommand: testim --token "YOUR_TESTIM_TOKEN" --project "YOUR_PROJECT_NAME" --grid "YOUR_GRID_NAME"
119+
testRunnerCommand: ./.hyperexecute/snooper --frameWork testim --testimProject YOUR_PROJECT_ID --testimToken YOUR_TESTIM_TOKEN --testimProjectBranch YOUR_BRANCH_NAME
120120
```
121121
122122
## Step 5: Setup the CLI

0 commit comments

Comments
 (0)