Skip to content

qase-tms/qasectl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Qase CLI

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

Installation

Install via go install

The easiest way to install Qase CLI is using go install:

go install github.com/qase-tms/qasectl@latest

Make sure to add $GOPATH/bin to your $PATH environment variable to be able to run the qasectl command.

Build from Source

If you'd like to build the CLI from source, follow these steps:

  1. Clone the repository:

    git clone https://github.com/qase-tms/qasectl.git && cd qasectl
  2. Build the binary using make:

    make build

    The compiled binary will be located in the build directory.

Docker Image

You can also use Qase CLI via Docker. Follow these steps:

  1. Pull the latest Docker image:

    docker pull ghcr.io/qase-tms/qase-cli:latest
  2. Run the Docker container:

    docker run --rm ghcr.io/qase-tms/qase-cli:latest version

Usage

qli is designed to be used directly in your terminal. You can run the following command to view available options:

qli --help

This will show all available commands and their descriptions.

For more detailed information about each command and option, refer to the full documentation.