-
Notifications
You must be signed in to change notification settings - Fork 65
81 lines (68 loc) · 1.87 KB
/
ui.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: UI Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
name: Python ${{ matrix.python }}
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Setup poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.8.3
- name: Configure poetry
run: poetry config virtualenvs.create false
- name: Install Python dependencies
run: |
poetry install
python -m pip install jupyterlab==3.6.1
- name: Setup Node
uses: actions/setup-node@v4
- name: Install Node dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn run build
- name: Setup and start Jupyterlab
run: |
jupyter labextension install .
jupyter labextension disable "@jupyterlab/apputils-extension:announcements"
cd ui-tests/
yarn --frozen-lockfile
yarn playwright install chromium
yarn start:detached
- name: Wait for JupyterLab
uses: ifaxity/wait-on-action@v1
with:
resource: http-get://localhost:8888/api
timeout: 20000
- name: Run tests
run: |
cd ui-tests/
yarn run test
- name: Update images
if: failure()
run: |
cd ui-tests/
yarn run test:update
- name: Upload images
if: failure()
uses: actions/upload-artifact@v4
with:
name: ipyvega-updated-snapshots
path: ui-tests/tests/vega.test.ts-snapshots/