Execute your CloudQA test suites using CircleCI orb.
Set up an environment variable in your CircleCI build called CLOUDQA_API_KEY. This will be used
automatically by the job.
Example executing a test suite:
version: 2.1
orbs:
suite-runner: cloudqa/[email protected]
workflows:
test-my-app:
jobs:
- suite-runner/execute:
suite-id: '<your-cloudqa-suite-id>'
browser: 'Chrome'
build-tag: 'Circle CI demo'
variables: 'cicd1=1,cicd2=2,cicd3=6'
is-sequential-execution: false
environment-name: 'QA'
image: 'cimg/base:stable'