From 1461ea7e2958f9f1ceef9f70b44861caaaccd132 Mon Sep 17 00:00:00 2001 From: Marton Havasi Date: Wed, 11 Dec 2024 17:30:10 +0000 Subject: [PATCH] pythonpath --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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