-
Notifications
You must be signed in to change notification settings - Fork 225
46 lines (37 loc) · 1.45 KB
/
test_all_notebooks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# 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.9', '3.10', '3.11', '3.12' ]
include: # Run windows tests on only one python version
- os: windows-latest
python-version: '3.10' # torch 1.x not available on Windows for Python 3.11
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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 .[prophet,torch,tensorflow]
python -m pip freeze
- name: Run notebooks
run: |
pytest --suppress-no-test-exit-code --no-cov -rA --durations=0 -vv -p no:randomly testing/test_notebooks.py