Update dependency ipywidgets to v8.1.1 #38
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker notebook tests | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the containers | |
run: docker compose -f docker-compose-dev.yaml --profile jupyter build | |
- name: Run the jupyter profile | |
run: docker compose -f docker-compose-dev.yaml --profile jupyter up -d | |
- name: Give containers time to initialize | |
shell: bash | |
run: sleep 90 | |
- name: Test notebooks in the docker environment | |
shell: bash | |
run: docker exec qs-jupyter "bash" "-c" "pip install nbmake pytest && pytest --nbmake --ignore=/home/jovyan/serverless/guides/07_working_with_datasets.ipynb /home/jovyan/serverless/" | |
- name: Dump logs on failure | |
if: ${{ failure() }} | |
run: | | |
docker compose logs gateway | |
docker compose logs jupyter |