Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

format update #1093

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions docs/deep-dive-into-hyperexecute-yaml.md
Original file line number Diff line number Diff line change
Expand Up @@ -419,21 +419,21 @@ Current Languages Supported: **maven, java, dotnet, node**, **ruby**, **android-

```yaml
runtime:
language: java
version: "11"
- language: java
version: "11"
```

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

```yaml
runtime:
language: java
version: 11
addons:
- name: "gauge"
version: "1.4.0"
- name: "gradle"
version : "7.0"
- language: java
version: 11
addons:
- name: "gauge"
version: "1.4.0"
- name: "gradle"
version : "7.0"
```

- You can also provide **multiple languages** and their **specified versions** that you want installed on your machine.
Expand Down
4 changes: 2 additions & 2 deletions docs/hyperexecute-cli-run-tests-on-hyperexecute-grid.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,9 +307,9 @@ This flag allows you to run a certain number of tests via tunnel. The default ma
This flag allows you to indicate the path of the zip file that needs to be uploaded for your tests to run.
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.

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.
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`**.

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.
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.

```bash
--use-zip "/home/users/work/yaml/zip/"
Expand Down
58 changes: 28 additions & 30 deletions docs/katalon-integration-with-hyperexecute.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,38 +80,36 @@ It also comes with a built-in interface for codeless automation testing and vali

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

```yaml
version: 0.1
globalTimeout: 90
testSuiteTimeout: 90
testSuiteStep: 90

autosplit: true

runson: win

tunnel: true
tunnelOpts:
global: true
```yaml
version: 0.1
globalTimeout: 90
testSuiteTimeout: 90
testSuiteStep: 90

concurrency: 2

pre:
- pip install requests # To install pip request
- python installer.py # To install the certs in the Machine
autosplit: true

runtime: katalon

testDiscovery:
type: raw
mode: dynamic
command: grep -lr 'testSuiteGuid' */*.ts | sed 's/:.*//' | sed 's/.ts//g'

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

retryOnFailure: false
maxRetries: 1
```
runson: win

tunnel: true
tunnelOpts:
global: true
concurrency: 2

pre:
- pip install requests # To install pip request
- python installer.py # To install the certs in the Machine
runtime: katalon

testDiscovery:
type: raw
mode: dynamic
command: grep -lr 'testSuiteGuid' */*.ts | sed 's/:.*//' | sed 's/.ts//g'

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

retryOnFailure: false
maxRetries: 1
```

Paste the command that you generated from the Katalon UI to fill the **testRunnerCommand** field in the _hyperexecute.yaml_ file.

Expand Down
Loading