-
Notifications
You must be signed in to change notification settings - Fork 11
87 lines (71 loc) · 2.51 KB
/
run-ui-tests.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
82
83
84
85
86
87
name: Frontend Playwright Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ "*" ]
workflow_dispatch:
inputs:
branch:
description: 'Branch to run the tests on'
required: false
default: 'master'
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch || github.ref }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set Branch Name
run: |
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
echo "branch_name=${{ github.event.inputs.branch }}" >> $GITHUB_ENV
else
echo "branch_name=${{ github.ref_name }}" >> $GITHUB_ENV
fi
- name: Sanitize Branch Name and Git Hash
run: |
sanitized_branch_name=$(echo "${{ env.branch_name }}" | sed 's/[^a-zA-Z0-9_-]/_/g')
sanitized_git_hash=$(git rev-parse --short "${{ github.sha }}" | sed 's/[^a-zA-Z0-9_-]/_/g')
echo "sanitized_branch_name=${sanitized_branch_name}" >> $GITHUB_ENV
echo "sanitized_git_hash=${sanitized_git_hash}" >> $GITHUB_ENV
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Yarn
run: npm install --global yarn
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Build Extension in Dev Mode
run: pip install -e .
- name: Build Wheel
run: |
python -m pip install --upgrade build
python -m build
- name: Install Xircuits from wheel
run: |
whl_name=$(ls dist/*.whl)
pip install $whl_name
- name: Install Xircuits Test Component Library
run: xircuits install tests
- name: Install xvfb
run: sudo apt-get install -y xvfb
- name: Test E2E
run: |
(jupyter lab --ServerApp.token='' --ServerApp.password='' --LabApp.default_url='/lab?reset' &) && cd ui-tests && jlpm install && jlpm playwright install && xvfb-run jlpm playwright test e2e/datatype-test.spec.ts
- uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report-${{ matrix.python-version }}-${{ env.sanitized_branch_name }}-${{ env.sanitized_git_hash }}
path: ui-tests/playwright-report/
retention-days: 1