Skip to content

Use composition for SyncZeebeClient #251

Use composition for SyncZeebeClient

Use composition for SyncZeebeClient #251

Workflow file for this run

name: Test pyzeebe
on: [push, pull_request]
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
container: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Init python poetry action
uses: abatilo/[email protected]
with:
poetry-version: 1.5.1
- name: Install dependencies
run: poetry install
- name: Test with pytest
run: |
poetry run coverage run --source=pyzeebe -m pytest tests/unit
- name: Upload to coveralls
run: |
poetry run coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
integration-test:
env:
ZEEBE_ADDRESS: "zeebe:26500"
runs-on: ubuntu-latest
strategy:
matrix:
zeebe-version: ["1.3.14", "8.2.10"]
container: python:3.11
services:
zeebe:
image: camunda/zeebe:${{ matrix.zeebe-version }}
ports:
- 26500/tcp
steps:
- uses: actions/checkout@v2
- name: Init python poetry action
uses: abatilo/[email protected]
with:
poetry-version: 1.5.1
- 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