diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a0410df..3757346 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,9 +33,11 @@ jobs: - name: Run notebooks shell: bash -l {0} + working-directory: examples run: | set -e - for file in examples/*.ipynb; do + PYTHONPATH=../ + for file in ./*.ipynb; do jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=300 "$file" done