Skip to content

Improved logging when plugins are cancelled for taking too long #224

Improved logging when plugins are cancelled for taking too long

Improved logging when plugins are cancelled for taking too long #224

Workflow file for this run

name: CI
on:
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Lint with flake8
run: |
tox -vv -eflake8
- name: Lint with pep8
run: |
tox -vv -epep8
container:
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
fedora-release: [37, 38]
steps:
- uses: actions/checkout@v4
# - name: Lint with pylint fedora:${{ matrix.fedora-release }}
# run: |
# docker pull fedora:${{ matrix.fedora-release }}
# docker run \
# -v ${GITHUB_WORKSPACE}:/root/src/ fedora:${{ matrix.fedora-release }} \
# /bin/bash -c "\
# dnf -y install \
# freeipa-server \
# freeipa-server-trust-ad \
# tox \
# python3-pip \
# python3-pytest \
# ; \
# python3 -m pip install --user --ignore-installed 'pylint ~= 2.15.5' ; \
# cd /root/src; \
# tox -vv -elint; \
# "
- name: pytest fedora:${{ matrix.fedora-release }}
run: |
docker pull fedora:${{ matrix.fedora-release }}
docker run \
-v ${GITHUB_WORKSPACE}:/root/src/ fedora:${{ matrix.fedora-release }} \
/bin/bash -c "\
dnf -y install \
freeipa-server \
freeipa-server-trust-ad \
tox \
python3-pytest \
; \
cd /root/src; \
tox -vv -epy3; \
"