Notebooks #1158
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
name: Notebooks | |
on: | |
# Run daily at 0:01 UTC | |
schedule: | |
- cron: '1 0 * * *' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.11'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
# FIXME: c.f. https://github.com/scikit-hep/pyhf/issues/2104 | |
python -m pip install --upgrade .[test] 'jupyter-client<8.0.0' | |
- name: List installed Python packages | |
run: python -m pip list | |
- name: Test example notebooks | |
run: | | |
# Override the ini option for filterwarnings with an empty list to disable error | |
# on filterwarnings as testing for notebooks to run with the latest API, not if | |
# Jupyter infrastructure is warning free. | |
pytest --verbose --override-ini filterwarnings= tests/test_notebooks.py |