Minor update

This commit is contained in:
Miroslav Štampar 2026-06-28 10:24:46 +02:00
parent 149bdd836b
commit 02ae09e154
4 changed files with 11 additions and 6 deletions

View file

@ -41,7 +41,8 @@ jobs:
shell: bash
run: |
python -m pip install pyflakes
python -m pyflakes $(git ls-files '*.py' | grep -v '^thirdparty/')
OUT=$(python -m pyflakes $(git ls-files '*.py' | grep -v '^thirdparty/') | grep -v ' redefines ')
if [ -n "$OUT" ]; then echo "$OUT"; exit 1; fi
echo "pyflakes: clean"
- name: Basic import test