id | title | hide_title | sidebar_label | description | keywords | image | url | site_name | slug | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
hyperexecute-cli-run-tests-on-hyperexecute-grid |
HyperExecute CLI - Run test on HyperExecute Grid |
true |
HyperExecute CLI - Run test on HyperExecute Grid |
Expalins about HyperExecute CLI |
|
/assets/images/og-images/Getting-Started-with-Lambdatest-Automation.jpg |
LambdaTest |
hyperexecute-cli-run-tests-on-hyperexecute-grid/ |
HyperExecute CLI
is a command line interface that is required to run tests on HyperExecute. This page outlines all you need to know about the CLI and also explains about the different flags & functionalities supported by the HyperExecute CLI.
You can download the HyperExecute CLI
for your OS from the links given below :
HyperExecute CLI provides different command-line flags that let you control the HyperExecute platform as per your customised requirements. You can run hyperexecute.exe --help
on your terminal to explore the different flags.
<img loading="lazy" src={require('../assets/images/hyperexecute/cli/cli-help.png').default} alt="Image" className="doc_img"/>
The various flags that are supported are listed below.
Flags | Type | Description |
---|---|---|
-h, --help | NA | Help for hyperexecute. |
--version | NA | Prints the HyperExecute CLI version. |
-u, --user | string | LambdaTest username. |
-k, --key | string | LambdaTest Access Key. |
--concurrency | Numerical | Indicates the number of concurrent sessions on HyperExecute. |
--config | string | Custom location for hyperexecute.yaml. |
--no-track | NA | Stops updating the progress of the uplodaed jobs. |
--download-artifacts | NA | Whether artifacts have to be downloaded or not. |
--preserve-payload | string | Preserves the job payload after its successful completion. |
analyze | NA | Shows the project description of the user. |
-t, --target-directory | string | Directory where the test script has to be uploaded. |
--target-path | string | Upload the files and folders as part of the suite payload. |
-z, --use-zip | string | Path of the zip file that needs to be uploaded. |
--verbose | NA | Logging of every proxy request to stdout. |
--vars | string | Method used to name keys. |
You can run this command if you need any help in understanding the definition of the flags on the CLI itself. However, if you need any further assistance we're just a <span className="doc__lt" onClick={() => window.openLTChatWidget()}>ping away.
--help
This flag indicates the version of HyperExecute CLI binary that you are running on your system.
--version
The username of your LambdaTest account.
--user "randomdeveloper"
The access key of your LambdaTest account. To find out how to retrieve your access key, visit this page.
--key "your_access_key"
This flag allows you to define the number of concurrent sessions running on HyperExecute. For more information on concurrency, go to this page.
--concurrency 2
This flag allows you to enter a custom location where you can download the HyperExecute YAML file. To learn more about the HyperExecute YAML, visit this page.
--config "/home/usera/work/yaml/"
You can track the progress of your uploaded jobs with HyperExecute. However, this flag allows you to opt out of receiving those updates.
--no-track
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.
- --download-artifacts-path: 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.
--download-artifacts-path "/home/usera/work/yaml/artifacts/"
This flag allows you to preserve the job payload after the job is completed successfully.
--preserve-payload
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.
hyperexecute analyze
The targetDirectory
option in the HyperExecute CLI specifies the directory where the output of the executed command will be stored. If this option is not specified, the output will be stored in the current working directory.
--target-directory "/home/usera/work/yaml/scripts/"
The target-path
flag allows you to selectively upload specific files and folders as part of the suite payload. This can be used for streamlining the uploading process and ensuring that only relevant files are included in the payload.
It can also be useful if a user wants to run tests in a monorepo for multiple services.
--target-path "src/test-suite/**"
This flag allows you to indicate the path of the zip file that needs to be uploaded for your tests to run.
--use-zip "/home/usera/work/yaml/zip/"
This flag allows you to log all of your proxy requests to the output section (stdout).
--verbose
This method allows you to name your variables. It helps you optimize the content of your YAML file by allowing for more flexibility.
--vars "org=Lambdatest" --vars "product=HyperExecute"
In order to trigger your test on Hyperexecute, just need to use the following command. Please replace the placeholder values with your details.
./hyperexecute --user <your_username> --key <your_access_key> --config <your_yaml_file_name>
Note: If you're running on a minimal alpine image, please make sure to install essential linux dependencies for HyperExecute CLI to work. (An example with our sample repo has been given below):
apk add libc6-compat git bash
git clone https://github.com/LambdaTest/behave-selenium-hyperexecute-sample.git
cd behave-selenium-hyperexecute-sample/
wget https://downloads.lambdatest.com/hyperexecute/linux/hyperexecute
chmod +x hyperexecute
./hyperexecute --user <lt_user> --key <lt_access_key> --config yaml/win/behave_hyperexecute_autosplit_sample.yaml
The HyperExecute CLI binary ignores all the files listed in the .gitignore
file during the testing process.
We also provide a similar functionality using te .hyperexecuteignore
. Learn More
Feel free to go over the frequently asked questions about the HyperExecute CLI.
Each time a job is run in Hyperexecute, a large number of logs are produced. These logs are sometimes beneficial for thorough debugging and analysis, it occasionally overwhelms Continuous Integration (CI) systems with an excessive amount of logs, especially when handling a large number of test executions. Hyperexecute provides a "Quiet mode" as a solution to this issue and to give users more control over the logging output. By only displaying significant updates during the test execution, this enables you to run tests with less logs.
First, you need to paas these commands in CLI or terminal to enable the Quiet Mode and then trigger the command to execute your job.
For macOS / Linux:
env | grep CI
# Used to check if the CI variable is set to true or not
export CI=true
# If it's not set to true, then use this command to set as true
For Windows:
env | grep CI
# Used to check if the CI variable is set to true or not
set CI=true
# If it's not set to true, then use this command to set as true
<img loading="lazy" src={require('../assets/images/hyperexecute/getting_started/quiet-mode.webp').default} alt="Image" width="1350" height="619" className="doc_img"/>