Skip to content

Build and run test extras #244

Build and run test extras

Build and run test extras #244

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build and run test extras
on:
push:
branches: [ "beta", "master" ]
#pull_requests
# branches: [ "master", "develop", "beta" ]
# Allow running manually from Actions tab
workflow_dispatch:
env:
SKIP_DEAP: 1
jobs:
test_extras: # On stable branches, run extended tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false # Finish all tests even if one fails
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.9, '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up installation environment (Ubuntu or Windows)
if: ${{matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest'}}
run: |
./.github/ci-scripts/before_install.sh
- name: Set up installation environment (MacOS)
if: ${{matrix.os == 'macos-latest'}}
run: |
./.github/ci-scripts/before_install_macos.sh
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip packages
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-${{ hashFiles('**/*requirements.txt') }}
- name: Install package
run: |
python -m pip install --upgrade pip
# Installing with -e to keep installation local
# but still compile Cython extensions
python -m pip install -e .[testing]
python setup.py build_ext --inplace
- name: Run test_packages Ubuntu
if: ${{matrix.os == 'ubuntu-latest'}}
run: |
python -Ic "import pygsti; print(pygsti.__version__); print(pygsti.__path__)"
python -m pytest -v -n auto --dist loadscope --ignore=test/test_packages/mpi --ignore=test/test_packages/notebooks test/test_packages
- name: Run test_packages Windows
if: ${{matrix.os == 'windows-latest'}}
run: |
python -Ic "import pygsti; print(pygsti.__version__); print(pygsti.__path__)"
python -m pytest -v -n auto --dist loadscope --ignore=test/test_packages/mpi --ignore=test/test_packages/notebooks test/test_packages
- name: Run test_packages MacOS
if: ${{matrix.os == 'macos-latest'}}
run: |
python -Ic "import pygsti; print(pygsti.__version__); print(pygsti.__path__)"
python -m pytest -v -n auto --dist loadscope --ignore=test/test_packages/mpi --ignore=test/test_packages/notebooks test/test_packages