Skip to content

Commit

Permalink
github/workflows/reusable-unit-tests: skip pylint for python3.8
Browse files Browse the repository at this point in the history
pylint finds false positives for Python 3.8:

  labgrid/remote/coordinator.py:188:21: E1136: Value 'dict' is unsubscriptable (unsubscriptable-object)
  labgrid/remote/coordinator.py:194:24: E1136: Value 'dict' is unsubscriptable (unsubscriptable-object)
  labgrid/remote/coordinator.py:195:22: E1136: Value 'dict' is unsubscriptable (unsubscriptable-object)

Since Python 3.8 reaches EOL in October 2024 anyways, let's just skip
pylint for this version until then.

Signed-off-by: Bastian Krause <[email protected]>
  • Loading branch information
Bastian-Krause committed Aug 8, 2024
1 parent 0537048 commit 02911ae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/reusable-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
run: |
pip install -e ".[dev]"
- name: Lint with pylint
if: inputs.python-version != '3.8'
run: |
pylint --list-msgs-enabled
pylint labgrid
Expand Down

0 comments on commit 02911ae

Please sign in to comment.