This commit is contained in:
emdee@spm.plastiras.org 2024-02-04 01:07:37 +00:00
parent 74a29f7ce3
commit 75ac0b2e07
8 changed files with 122 additions and 88 deletions

View file

@ -1,16 +1,16 @@
#!/bin/sh
EXE=/var/local/bin/pydev_pylint.bash
ROLE=logging
EXE=/usr/local/bin/toxcore_pylint.bash
ROLE=toxcore
$EXE --recursive y --verbose --py-version 3.11 \
--output-format colorized --rcfile .pylint.rc \
-E -f text tox_wrapper/*py tox_wrapper/tests/*py > .pylint.err
-E -f text src/tox_wrapper/*py src/tox_wrapper/tests/*py > .pylint.err
retval=$?
$EXE --recursive y --verbose --py-version 3.11 \
--output-format colorized --rcfile .pylint.rc \
tox_wrapper/*py tox_wrapper/tests/*py > .pylint.out
src/tox_wrapper/*py src/tox_wrapper/tests/*py > .pylint.out
sed -e "/Module 'os' has no/d" \
-e "/Undefined variable 'app'/d" \