-
Notifications
You must be signed in to change notification settings - Fork 2
70 lines (66 loc) · 1.62 KB
/
pytest.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
name: pytest
on:
pull_request:
push:
branches:
- main
schedule:
- cron: "14 3 * * 1" # at 03:14 on Monday.
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version:
- "3.12"
- "3.11"
- "3.10"
os:
- ubuntu-latest
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
znsocket:
image: pythonf/znsocket
options: >-
--health-cmd "python healthcheck.py"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 4748:4748
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install python packages
run: uv sync --all-extras --dev
- name: Install javascript packages
run: |
npm install
- name: Run pytest
run: |
uv run python --version
uv run coverage run -m pytest
uv run coverage lcov
- name: Run jest
run: |
npm test -- . -t native_
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov