qasectl is the command-line interface (CLI) for Qase, enabling users to interact with test runs and import test results
directly from the terminal.
Qase CLI is available for both Qase and Qase Enterprise users.
The easiest way to install Qase CLI is using go install:
go install github.com/qase-tms/qasectl@latestMake sure to add $GOPATH/bin to your $PATH environment variable to be able to run the qasectl command.
If you'd like to build the CLI from source, follow these steps:
-
Clone the repository:
git clone https://github.com/qase-tms/qasectl.git && cd qasectl
-
Build the binary using
make:make build
The compiled binary will be located in the
builddirectory.
You can also use Qase CLI via Docker. Follow these steps:
-
Pull the latest Docker image:
docker pull ghcr.io/qase-tms/qase-cli:latest
-
Run the Docker container:
docker run --rm ghcr.io/qase-tms/qase-cli:latest version
qasectl is designed to be used directly in your terminal. You can run the following command to view available options:
qasectl --helpThis will show all available commands and their descriptions.
For more detailed information about each command and option, refer to the full documentation.