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
we could use pytest plugin nbval to check our notebooks. Here is an actions yml from our notebook tutorials repo:
name: Test PR and Image
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
container:
image: cmelab/notebook-tutorials
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v1
- name: test notebooks
shell: bash -l {0}
run: python -m pytest -v --nbval-lax
The text was updated successfully, but these errors were encountered:
we could use pytest plugin nbval to check our notebooks. Here is an actions yml from our notebook tutorials repo:
The text was updated successfully, but these errors were encountered: