Skip to content

Commit 1a95f5c

Browse files
Aman1905Ishavyas9
authored andcommitted
format update
1 parent d1949b6 commit 1a95f5c

File tree

3 files changed

+41
-34
lines changed

3 files changed

+41
-34
lines changed

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

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

421421
```yaml
422422
runtime:
423-
language: java
424-
version: "11"
423+
- language: java
424+
version: "11"
425425
```
426426

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

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

440440
- 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: 30 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -80,29 +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-
```bash
84-
version: 0.1
85-
globalTimeout: 90
86-
testSuiteTimeout: 90
87-
testSuiteStep: 90
88-
retryOnFailure: false
89-
maxRetries: 1
90-
runson: win
91-
pre:
92-
- pip install requests # To install pip request
93-
- python installer.py # To install the certs in the Machine
94-
95-
tunnel: true
96-
tunnelOpts:
97-
global: true
98-
autosplit: true
99-
concurrency: 2
100-
testDiscovery:
101-
type: raw
102-
mode: dynamic
103-
command: grep -lr 'testSuiteGuid' */*.ts | sed 's/:.*//' | sed 's/.ts//g'
104-
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
105-
```
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
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+
```
106113
107114
Paste the command that you generated from the Katalon UI to fill the **testRunnerCommand** field in the _hyperexecute.yaml_ file.
108115

0 commit comments

Comments
 (0)