test_all_notebooks #62
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
# This workflows executes all example notebooks to ensure they are up-to-date. | |
name: test_all_notebooks | |
defaults: | |
run: | |
shell: bash # To override PowerShell on Windows | |
on: | |
# Trigger the workflow on manual dispatch and once a week | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
test_notebooks: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false # Continue to run other builds despite a failure | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [ '3.8', '3.9', '3.10', '3.11' ] | |
include: # Run macos and windows tests on only one python version | |
- os: windows-latest | |
python-version: '3.11' | |
- os: macos-latest | |
python-version: '3.11' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install --upgrade --upgrade-strategy eager -r requirements/dev.txt -r testing/requirements.txt | |
python -m pip install --upgrade --upgrade-strategy eager .[shap,tensorflow] | |
if [ "$RUNNER_OS" != "Windows" ]; then | |
# Windows support for ray is experimental (https://docs.ray.io/en/latest/installation.html#windows-support) | |
python -m pip install --upgrade --upgrade-strategy eager .[shap,tensorflow,ray] | |
fi | |
python -m spacy download en_core_web_md | |
python -m pip freeze | |
- name: Run notebooks | |
run: | | |
pytest --suppress-no-test-exit-code --no-cov -rA --durations=0 -vv testing/test_notebooks.py |