Skip to content

Merge pull request #439 from sandialabs/bugfix-densitymx-slow #102

Merge pull request #439 from sandialabs/bugfix-densitymx-slow

Merge pull request #439 from sandialabs/bugfix-densitymx-slow #102

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 notebook regression
on:
push:
branches: [ "beta", "master" ]
# Allow running manually from Actions tab
workflow_dispatch:
env:
SKIP_DEAP: 1
jobs:
notebook_regression: # 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
#download chp source code
curl -o ./jupyter_notebooks/Tutorials/algorithms/advanced/chp.c https://www.scottaaronson.com/chp/chp.c
#compile chp
gcc -o ./jupyter_notebooks/Tutorials/algorithms/advanced/chp ./jupyter_notebooks/Tutorials/algorithms/advanced/chp.c
- name: Set up installation environment (MacOS)
if: ${{matrix.os == 'macos-latest'}}
run: |
./.github/ci-scripts/before_install_macos.sh
#download chp source code
curl -o ./jupyter_notebooks/Tutorials/algorithms/advanced/chp.c https://www.scottaaronson.com/chp/chp.c
#compile chp source code
gcc -o ./jupyter_notebooks/Tutorials/algorithms/advanced/chp ./jupyter_notebooks/Tutorials/algorithms/advanced/chp.c
- 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 notebook regression
run: |
python -Ic "import pygsti; print(pygsti.__version__); print(pygsti.__path__)"
python -m pytest -n auto --nbval-lax --dist loadscope --nbval-current-env jupyter_notebooks