Skip to content

Commit

Permalink
Fix pylint version to 3.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Benedikt Volkel committed Oct 7, 2024
1 parent 6eeae9f commit 14448b2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ jobs:
# For now always install pytest, needed e.g. by pylint when browsing though pytest dir
pip install pytest
- name: Test with ${{ matrix.test-tool }}
if: contains(matrix.test-tool, 'pylint') # from pylint==3.3.0 there seem to be issues with reading the configuration from a file correctly
run: |
pip install pylint==3.2.7
tests/run_tests.sh ${{ matrix.test-tool }}
- name: Test with ${{ matrix.test-tool }}
if: ${{ ! contains(matrix.test-tool, 'pylint') }}
run: |
pip install ${{ matrix.test-tool }}
tests/run_tests.sh ${{ matrix.test-tool }}
Expand Down

0 comments on commit 14448b2

Please sign in to comment.