From 7f414d3c0d7679f5259e9ab8383e4c340caaa991 Mon Sep 17 00:00:00 2001 From: Rob Court Date: Tue, 19 Sep 2023 11:13:55 +0100 Subject: [PATCH] Update test_notebooks.yml --- .github/workflows/test_notebooks.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_notebooks.yml b/.github/workflows/test_notebooks.yml index 0ae534fd..14e3d2c4 100644 --- a/.github/workflows/test_notebooks.yml +++ b/.github/workflows/test_notebooks.yml @@ -18,10 +18,15 @@ jobs: python -m pip install -U pip python -m pip install -r .github/workflows/requirements.txt - - name: Execute the notebooks + - name: Execute the tutorial notebooks run: | jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=900 docs/source/tutorials/*.ipynb + - name: Execute the snippet notebooks + run: | + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=900 snippets/*.ipynb + + - uses: actions/upload-artifact@v2 with: name: notebooks-for-${{ github.sha }}