Skip to content

Commit

Permalink
[CHORE] kernel override for notebook checker (#1746)
Browse files Browse the repository at this point in the history
  • Loading branch information
samster25 authored Dec 20, 2023
1 parent 643302a commit 575637d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/notebook-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
pip install --upgrade pip
pip install -U jupyter papermill
- name: Run notebooks in docs
run: find docs -name "*.ipynb" -print0 | xargs -0 -I {} papermill {} /tmp/out.ipynb -p CI True --no-progress-bar --cwd /tmp/
run: find docs -name "*.ipynb" -print0 | xargs -0 -I {} papermill {} /tmp/out.ipynb -p CI True --kernel python3 --no-progress-bar --cwd /tmp/
- name: Run notebooks in tutorials
run: find tutorials -name "*.ipynb" -print0 | xargs -0 -I {} papermill {} /tmp/out.ipynb -p CI True --no-progress-bar --cwd /tmp/
run: find tutorials -name "*.ipynb" -print0 | xargs -0 -I {} papermill {} /tmp/out.ipynb -p CI True --kernel python3 --no-progress-bar --cwd /tmp/
- name: Send Slack notification on failure
uses: slackapi/[email protected]
if: failure()
Expand Down

0 comments on commit 575637d

Please sign in to comment.