You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remi makes use of a different menthod of running the test notebooks.
Compare this to what we have and see if we can upgrade the method used
# This is a basic workflow to help you get started with Actionsname: Test demos# Controls when the action will run. on:
# Triggers the workflow on push or pull request events but only for the master branchpush:
branches:
- master
- devpull_request:
branches:
- master
- dev# A workflow run is made up of one or more jobs that can run sequentially or in paralleljobs:
# This workflow contains a single job called "build"build:
# The type of runner that the job will run onruns-on: ubuntu-latestcontainer: quay.io/fenicsproject/stable:latest# Steps represent a sequence of tasks that will be executed as part of the jobsteps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2# Runs a single command using the runners shell
- name: Run the notebooksrun: | jupyter-nbconvert --to python demos/demo_multi_materials.ipynb mkdir outputs python3 -m demos.demo_multi_materials jupyter-nbconvert --to python demos/demo_meshes.ipynb python3 -m demos.demo_meshes jupyter-nbconvert --to python demos/demo_derived_quantities.ipynb python3 -m demos.demo_derived_quantities jupyter-nbconvert --to python demos/demo_Ogorodnikova.ipynb python3 -m demos.demo_Ogorodnikova jupyter-nbconvert --to python demos/demo_coupled_heat_transfer.ipynb python3 -m demos.demo_coupled_heat_transfer
Remi makes use of a different menthod of running the test notebooks.
Compare this to what we have and see if we can upgrade the method used
Originally posted by @RemDelaporteMathurin in #830 (comment)
The text was updated successfully, but these errors were encountered: