-
Notifications
You must be signed in to change notification settings - Fork 166
49 lines (43 loc) · 1.16 KB
/
python-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
name: Python Tests
on:
push:
branches:
- main
paths:
- "python/**"
- "openapi.json"
- "server/**"
- ".github/workflows/python-tests.yml"
pull_request:
paths:
- "python/**"
- "openapi.json"
- "server/**"
- ".github/workflows/python-tests.yml"
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Build svix server image
run: docker compose build
working-directory: ./server
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.11"
- name: Install deps
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt .
python -m pip install -r requirements-dev.txt .
working-directory: ./python
- name: Regen openapi libs
run: ./scripts/generate_openapi.sh
working-directory: ./python
- name: Check typing on client tests
run: mypy tests/test_client.py
working-directory: ./python
- name: Run Python tests
run: pytest -sv
working-directory: ./python