-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (58 loc) · 1.59 KB
/
Copy pathpython-test.yml
File metadata and controls
68 lines (58 loc) · 1.59 KB
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
name: Run tests
permissions:
contents: read
on:
push:
branches: [main]
tags:
- v*
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
environment:
name: test
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: 'Setup Chrome and chromedriver'
uses: nanasess/setup-chromedriver@v2
- name: 'Setup chromedriver environment'
run: |
export DISPLAY=:99
chromedriver --url-base=/wd/hub &
- name: Start XVFB
run: Xvfb :99 &
- name: Setup uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv
- name: Install dependencies
run: |
npm ci
source .venv/bin/activate
uv pip install --upgrade pip
uv pip install wheel
uv pip install -r dev-requirements.txt
- name: Lint
run: |
source .venv/bin/activate
npm run lint
- name: Run tests
env:
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }}
CLERK_DOMAIN: ${{ secrets.CLERK_DOMAIN }}
CLERK_PUBLISHABLE_KEY: ${{ secrets.CLERK_PUBLISHABLE_KEY }}
CLERK_TEST_USER: ${{ secrets.CLERK_TEST_USER }}
CLERK_TEST_PASSWORD: ${{ secrets.CLERK_TEST_PASSWORD }}
run: |
source .venv/bin/activate
pytest --headless