-
Notifications
You must be signed in to change notification settings - Fork 37
93 lines (85 loc) · 2.98 KB
/
test.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
88
89
90
91
92
93
name: Test pyzeebe
on: [push, pull_request]
jobs:
# 3.6, 3.7 and 3.8 only for passing branch rules
# https://github.com/camunda-community-hub/pyzeebe/issues/381#issuecomment-2107430780
unit-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.7' && matrix.python-version != '3.8' }}
- name: Init python poetry action
uses: abatilo/[email protected]
with:
poetry-version: 1.8.3
if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.7' && matrix.python-version != '3.8' }}
- name: Install dependencies
run: poetry install
if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.7' && matrix.python-version != '3.8' }}
- name: Test with pytest
run: |
poetry run coverage run --source=pyzeebe -m pytest tests/unit
if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.7' && matrix.python-version != '3.8' }}
- name: Upload to coveralls
run: |
poetry run coveralls --service=github
env:
COVERALLS_PARALLEL: "true"
COVERALLS_SERVICE_JOB_ID: ${{ github.run_id }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.7' && matrix.python-version != '3.8' }}
integration-test:
env:
ZEEBE_ADDRESS: "localhost:26500"
runs-on: ubuntu-latest
strategy:
matrix:
zeebe-version: ["8.2.29", "8.3.13", "8.4.9", "8.5.5"]
services:
zeebe:
image: camunda/zeebe:${{ matrix.zeebe-version }}
ports:
- 26500:26500
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Init python poetry action
uses: abatilo/[email protected]
with:
poetry-version: 1.8.3
- name: Install dependencies
run: poetry install
- name: Sleep for 30 seconds
uses: jakejarvis/wait-action@master
with:
time: "30s"
- name: Run integration tests
run: |
poetry run pytest tests/integration
finish-coveralls:
runs-on: ubuntu-latest
needs: unit-test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Init python poetry action
uses: abatilo/[email protected]
with:
poetry-version: 1.8.3
- name: Install dependencies
run: poetry install
- name: finish coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
poetry run coveralls --service=github --finish