Skip to content

Feature timeout soc #1551

Feature timeout soc

Feature timeout soc #1551

name: Python application
on: pull_request
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest paho-mqtt requests-mock jq pyjwt==2.6.0 bs4 pkce typing_extensions python-dateutil==2.8.2
- name: Flake8 with annotations in packages folder
uses: TrueBrain/[email protected]
with:
path: packages
flake8_version: 5.0.4
- name: Flake8 with annotations in runs folder
uses: TrueBrain/[email protected]
with:
path: runs
flake8_version: 5.0.4
- name: Test with pytest
run: |
PYTHONPATH=packages python -m pytest packages --log-cli-level=DEBUG
PYTHONPATH=runs python -m pytest packages --log-cli-level=DEBUG