Bitbucket Pipelines
This guide will help you integrate Scandium into your Bitbucket Pipelines workflow. With just a few steps, you’ll be able to run automated tests from your Scandium test suite on every push or PR
Last updated
image: ubuntu:latest
pipelines:
default:
- step:
name: Run Scandium Tests
caches:
- apt
script:
- apt-get update && apt-get install -y curl jq
- SCRIPT_URL="https://raw.githubusercontent.com/GetScandium/files/refs/heads/main/scandium_script.sh"
- curl -o scandium_script.sh $SCRIPT_URL
- chmod +x scandium_script.sh
- ./scandium_script.sh
services:
- docker
deployment: Test
artifacts:
- test-results/**
definitions:
variables:
BROWSER: "chrome"
SCREENSHOT: "true"
VARIABLES: "{}"
RETRY: "0"
MAX_ATTEMPTS: "30"
WAIT_PERIOD: "120"