Skip to content

Commit f314b04

Browse files
committed
format update
1 parent 84932db commit f314b04

File tree

3 files changed

+39
-41
lines changed

3 files changed

+39
-41
lines changed

docs/deep-dive-into-hyperexecute-yaml.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -419,21 +419,21 @@ Current Languages Supported: **maven, java, dotnet, node**, **ruby**, **android-
419419

420420
```yaml
421421
runtime:
422-
language: java
423-
version: "11"
422+
- language: java
423+
version: "11"
424424
```
425425

426426
- You can also install **gauge** and **gradle** only as an additional frameworks or tools independent of the language defined.
427427

428428
```yaml
429429
runtime:
430-
language: java
431-
version: 11
432-
addons:
433-
- name: "gauge"
434-
version: "1.4.0"
435-
- name: "gradle"
436-
version : "7.0"
430+
- language: java
431+
version: 11
432+
addons:
433+
- name: "gauge"
434+
version: "1.4.0"
435+
- name: "gradle"
436+
version : "7.0"
437437
```
438438

439439
- You can also provide **multiple languages** and their **specified versions** that you want installed on your machine.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,9 @@ This flag allows you to run a certain number of tests via tunnel. The default ma
307307
This flag allows you to indicate the path of the zip file that needs to be uploaded for your tests to run.
308308
Let's say you already have a zipped payload that you want to upload, so you can provide the path of that payload and upload it.
309309

310-
Whenever you zip your test files, it creates a folder, let's say **tests.zip**. Now, when this zip folder is unarchived, HyperExecute searches for a file named **.hyperexecute.yaml**, which should be present in the root folder only.
310+
Whenever you zip your test files, it creates a folder, let's say **tests.zip**. Now, when this zip folder is unarchived, HyperExecute searches for a file named **`hyperexecute.yaml`**.
311311

312-
In another scenario, suppose you first created a folder. Inside that folder, you put all your required test files and then zip that folder (say **folder.zip**). When this zip folder is unarchived, HyperExecute will again search for the **.hyperexecute.yaml** file, which in this case won't be available as it will be inside the folder, which will throw an error.
312+
In another scenario, suppose you first created a folder. Inside that folder, you put all your required test files and then zip that folder (say **folder.zip**). When this zip folder is unarchived, HyperExecute will again search for the **`hyperexecute.yaml`** file, which in this case won't be available as it will be inside the folder, which will throw an error.
313313

314314
```bash
315315
--use-zip "/home/users/work/yaml/zip/"

docs/katalon-integration-with-hyperexecute.md

Lines changed: 28 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -80,38 +80,36 @@ It also comes with a built-in interface for codeless automation testing and vali
8080

8181
4. Create the hyperexecute.yaml file in the root directory of your Katalon project with the given parameters:
8282

83-
```yaml
84-
version: 0.1
85-
globalTimeout: 90
86-
testSuiteTimeout: 90
87-
testSuiteStep: 90
88-
89-
autosplit: true
90-
91-
runson: win
92-
93-
tunnel: true
94-
tunnelOpts:
95-
global: true
83+
```yaml
84+
version: 0.1
85+
globalTimeout: 90
86+
testSuiteTimeout: 90
87+
testSuiteStep: 90
9688

97-
concurrency: 2
98-
99-
pre:
100-
- pip install requests # To install pip request
101-
- python installer.py # To install the certs in the Machine
89+
autosplit: true
10290

103-
runtime: katalon
104-
105-
testDiscovery:
106-
type: raw
107-
mode: dynamic
108-
command: grep -lr 'testSuiteGuid' */*.ts | sed 's/:.*//' | sed 's/.ts//g'
109-
110-
testRunnerCommand: katalonc `-noSplash `-runMode=console `-projectPath="G:\foreman\Hyperexecute_Sample\Hyperexecute_Sample.prj" `-retry=0 `-testSuitePath="$test" `-browserType="firefox" `-executionProfile="default" `-apiKey="aaa9402b-6a2e-4621-a4c3-05fe356f5aad" `-`-config `-webui.autoUpdateDrivers=true
111-
112-
retryOnFailure: false
113-
maxRetries: 1
114-
```
91+
runson: win
92+
93+
tunnel: true
94+
tunnelOpts:
95+
global: true
96+
concurrency: 2
97+
98+
pre:
99+
- pip install requests # To install pip request
100+
- python installer.py # To install the certs in the Machine
101+
runtime: katalon
102+
103+
testDiscovery:
104+
type: raw
105+
mode: dynamic
106+
command: grep -lr 'testSuiteGuid' */*.ts | sed 's/:.*//' | sed 's/.ts//g'
107+
108+
testRunnerCommand: katalonc `-noSplash `-runMode=console `-projectPath="G:\foreman\Hyperexecute_Sample\Hyperexecute_Sample.prj" `-retry=0 `-testSuitePath="$test" `-browserType="firefox" `-executionProfile="default" `-apiKey="aaa9402b-6a2e-4621-a4c3-05fe356f5aad" `-`-config `-webui.autoUpdateDrivers=true
109+
110+
retryOnFailure: false
111+
maxRetries: 1
112+
```
115113
116114
Paste the command that you generated from the Katalon UI to fill the **testRunnerCommand** field in the _hyperexecute.yaml_ file.
117115

0 commit comments

Comments
 (0)