From d6b7a4534c1420835acb75a763dd8bbf1da28698 Mon Sep 17 00:00:00 2001 From: matteopilz Date: Thu, 31 Jul 2025 16:45:59 +0200 Subject: [PATCH] changed jupyter test action --- .github/workflows/test-notebooks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-notebooks.yml b/.github/workflows/test-notebooks.yml index 8d08b0fa9..61d5bc09e 100644 --- a/.github/workflows/test-notebooks.yml +++ b/.github/workflows/test-notebooks.yml @@ -11,7 +11,7 @@ on: jobs: - test-lnx-py37: + test-lnx: runs-on: ubuntu-latest steps: @@ -29,7 +29,7 @@ jobs: - name: Testing notebooks run: | - for f in docs/source/*.ipynb + for f in docs/source/user_guide/*.ipynb do jupyter nbconvert --to notebook --inplace --execute $f || (echo "$f" >> failed_nbs.txt) done