Skip to content

Commit 045634b

Browse files
github/workflows/reusable-unit-tests: skip pylint for python3.8
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]>
1 parent e0167ae commit 045634b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/reusable-unit-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
run: |
4848
pip install -e ".[dev]"
4949
- name: Lint with pylint
50+
if: inputs.python-version != '3.8'
5051
run: |
5152
pylint --list-msgs-enabled
5253
pylint labgrid

0 commit comments

Comments
 (0)