Set Up CircleCI to Run Testery Tests
How-to trigger a Testery test run from a CircleCI build.
Testery integrates with CircleCI via the Testery CLI.
You'll need to define a GitHub Actions workflow. This is done by creating a yml file in the .github/workflows
folder in your repository.
Step 1. Retrieve your Testery API Token. To retrieve your token, click Settings → Integrations → Show API Token and copy the token that is displayed. Keep this token secure as it allows access to Testery on your behalf.
Step 2. Store your Testery API Token as a secret environment variable in CircleCI.
Step 3. Add steps to your CircleCI job to install the Testery CLI and create the test run.
Here is a sample .circleci/config.yml
Last updated