Skip to content

Initial version of system test container image, github workflow #19

Initial version of system test container image, github workflow

Initial version of system test container image, github workflow #19

Workflow file for this run

name: System Tests
on:
pull_request:
workflow_dispatch:
inputs:
python-version:
description: Python version
required: true
default: "3.11"
type: string
env:
# https://github.com/pytest-dev/pytest/issues/2042
PY_IGNORE_IMPORTMISMATCH: "1"
jobs:
run-system-tests:
runs-on: system-tests
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# Need this to get version number from last tag
fetch-depth: 0
- if: inputs.python-version != 'dev'
name: Install latest versions of python packages
uses: ./.github/actions/install_requirements
with:
python-version: ${{ inputs.python-version }}
pip-install: ".[dev]"
- name: Run tests
run: tox -e systemtests