Skip to content

Commit

Permalink
Disable the pylint github workflow
Browse files Browse the repository at this point in the history
Ubuntu has pylint 3.0.1 which is apparently incompatible with
pylint_plugins.py. Disable this temporarily. Chances are good
that once this is addressed in freeipa it can be ported back
here as well.

Signed-off-by: Rob Crittenden <[email protected]>
  • Loading branch information
rcritten committed Oct 10, 2023
1 parent 386f8fc commit 4d7dba6
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,23 +39,23 @@ jobs:

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: 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 }}
Expand Down

0 comments on commit 4d7dba6

Please sign in to comment.