Windows Klaatu Tests #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow that is manually triggered | |
name: Windows Klaatu Tests | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Experiment Branch' | |
default: 'control' | |
required: true | |
type: string | |
slug: | |
description: 'Experiment Slug' | |
default: 'an-awesome-experiment' | |
required: true | |
type: string | |
env: | |
MOZ_HEADLESS: 1 | |
jobs: | |
klaatu-tests: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
firefox: ['latest-beta', 'latest-nightly', 'latest' ] | |
name: windows-klaatu-firefox${{ matrix.firefox }} | |
steps: | |
- name: Setup firefox | |
id: setup-firefox | |
uses: browser-actions/setup-firefox@v1 | |
with: | |
firefox-version: ${{ matrix.firefox }} | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- uses: browser-actions/setup-geckodriver@latest | |
- name: Install Chocolatey | |
shell: pwsh | |
run: Set-ExecutionPolicy Bypass -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) | |
- name: Install Dependencies | |
shell: pwsh | |
run: choco install jdk8 selenium | |
- name: Setup tests | |
shell: bash | |
run: ./setup_script.sh | |
- name: Run Tests | |
run: tox -e bdd-tests -- --experiment-branch ${{ inputs.branch }} --experiment-slug ${{ inputs.slug }} --private-browsing-enabled |