Skip to content

Commit

Permalink
Merge pull request #291 from pyiron/notebook-test
Browse files Browse the repository at this point in the history
Add notebook test
  • Loading branch information
jan-janssen committed May 4, 2024
2 parents f22e760 + acb8944 commit 26ee3e4
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .ci_support/environment-notebooks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
channels:
- conda-forge
dependencies:
- jupyter
- papermill
40 changes: 40 additions & 0 deletions .github/workflows/notebooks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# This workflow is used to test, if the code is compatible with jupyter notebooks providing usage examples

name: Notebooks

on:
push:
branches: [ main ]
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Merge Notebook environment
run: |
cp binder/environment.yml environment.yml
tail --lines=+4 .ci_support/environment-notebooks.yml >> environment.yml
- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v2
with:
python-version: "3.12"
miniforge-variant: Mambaforge
channels: conda-forge
channel-priority: strict
activate-environment: my-env
environment-file: environment.yml
use-mamba: true
- name: Install
shell: bash -l {0}
run: |
pip install versioneer[toml]==0.29
pip install . --no-deps --no-build-isolation
mkdir config
cp -r tests/config/flux config
- name: Notebooks
shell: bash -l {0}
run: >
flux start
papermill notebooks/example.ipynb example-out.ipynb -k "python3"
2 changes: 1 addition & 1 deletion binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ dependencies:
- pympipool =0.8.1
- cloudpickle =3.0.0
- flux-core =0.59.0
- versioneer =0.28
- versioneer =0.28

0 comments on commit 26ee3e4

Please sign in to comment.