Skip to content

Update dependency paho-mqtt to v2 #378

Update dependency paho-mqtt to v2

Update dependency paho-mqtt to v2 #378

Workflow file for this run

name: Python package
on:
push:
branches-ignore:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
runs-on: ubuntu-latest
container: ubuntu:latest@sha256:f9d633ff6640178c2d0525017174a688e2c1aef28f0a0130b26bd5554491f0da
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5
with:
python-version: ${{ matrix.python-version }}
- name: Install OS dependencies
run: |
DEBIAN_FRONTEND=noninteractive apt update
DEBIAN_FRONTEND=noninteractive apt install curl sqlite3 -y
- uses: snok/install-poetry@93ada01c735cc8a383ce0ce2ae205a21c415379b # v1
with:
version: 1.6.1 # pin the version as they keep changing their APIs
virtualenvs-create: false
virtualenvs-in-project: false
- name: Install dependencies
run: |
python -m venv venv
. venv/bin/activate
poetry install --with test --without dev --no-interaction --no-root --sync
python -c "import os; print(os.environ['VIRTUAL_ENV'])"
- name: Lint with flake8
run: |
. venv/bin/activate
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
env:
DOTENV_KEY: ${{ secrets.DOTENV_KEY }}
run: |
. venv/bin/activate
pytest --cov mqtt_to_eventhub_module --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@0cfda1dd0a4ad9efc75517f399d859cd1ea4ced1 # v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}