-
Notifications
You must be signed in to change notification settings - Fork 1
97 lines (94 loc) · 2.91 KB
/
tests.yaml
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
88
89
90
91
92
93
94
95
96
97
name: Tests
on:
push:
paths-ignore:
- .gitignore
- LICENSE
- README.md
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: pre-commit/[email protected]
test-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.5.1"
enable-cache: true
- name: Install Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --all-extras --frozen
- name: Run checks
run: uv run make check
- name: Run tests and create coverage report
run: uv run make test-coverage
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
test-matrix:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
deps:
- starlette
- fastapi starlette
- fastapi==0.109.0 starlette
- fastapi==0.100.1 starlette
- fastapi==0.88.0 starlette
- flask
- flask==2.3.*
- flask==2.0.3 Werkzeug==2.*
- djangorestframework django uritemplate inflection
- djangorestframework django==4.2.* uritemplate inflection
- djangorestframework==3.12.* django==3.2.* uritemplate
- djangorestframework==3.10.* django==2.2.* uritemplate
- django-ninja django
- django-ninja==0.22.* django
- django-ninja==0.18.0 django
- litestar
- litestar==2.6.1
- litestar==2.3.0
- litestar==2.0.1
exclude:
- python: "3.12"
deps: fastapi==0.100.1 starlette
- python: "3.12"
deps: fastapi==0.87.0 starlette
- python: "3.12"
deps: djangorestframework==3.12.* django==3.2.* uritemplate
- python: "3.12"
deps: djangorestframework==3.10.* django==2.2.* uritemplate
- python: "3.12"
deps: litestar==2.0.1
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.5.1"
enable-cache: true
- name: Install Python
run: uv python install ${{ matrix.python }}
- name: Build Python package wheel
run: uv build --wheel
- name: Install test dependencies
run: uv sync --no-install-project --only-group test --frozen
- name: Install app dependencies
run: uv pip install ${{ matrix.deps }} ./dist/apitally-*.whl
- name: Run tests
run: uv run make test