Skip to content

Commit

Permalink
🧪 add failing tutorial execution
Browse files Browse the repository at this point in the history
KeyError: 'array'?  (Python 3.10)
  • Loading branch information
Henry Webel committed May 28, 2024
1 parent ddc5131 commit 05eb01c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test_tutorial.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test tutorial

on:
- push

jobs:
format:
name: Check tutorial
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install Claster requirements
run: |
pip install numpy pandas matplotlib jupyter ipykernel eir-dl
- name: Run papermill for cmd-line execution of notebooks
run: |
pip install papermill
- name: Test Tutorial
run: |
cd scripts
papermill 0_Tutorial.ipynb 0_Tutorial_out.ipynb

0 comments on commit 05eb01c

Please sign in to comment.