-
Notifications
You must be signed in to change notification settings - Fork 154
49 lines (41 loc) · 1.44 KB
/
run_demos_examples.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
47
48
49
name: Run splink example notebooks
on:
pull_request:
branches:
- master
- "**dev"
paths:
- "splink/**"
- "docs/demos/examples/**"
- "!docs/demos/examples/examples_index.md"
- "pyproject.toml"
workflow_dispatch:
jobs:
test-notebooks:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
test-group: ["duckdb", "spark", "sqlite"]
name: Test ${{ matrix.test-group }} notebooks with Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Install poetry using pipx
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install --no-interaction --no-root
poetry run pip install -e .
- name: Install additional requirements from demos_requirements.txt
run: poetry run pip install -r docs/demos/data/demos_requirements.txt
- name: Modify Notebooks to reduce data size
run: python scripts/reduce_notebook_runtime.py
- name: Test ${{ matrix.test-group }} example notebooks with pytest
run: |
poetry run pytest -vv --nbmake -n=auto --nbmake-kernel=python3 --durations=0 docs/demos/examples/${{ matrix.test-group }}/*ipynb