From 6deea64979ea99103a0aa50947f9f39ea20e2898 Mon Sep 17 00:00:00 2001 From: "emdee@macaw.me" Date: Sat, 16 Dec 2023 14:59:22 +0000 Subject: [PATCH] git add .pylint.* .pyanal.sh --- .pyanal.sh | 2 +- .pylint.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pyanal.sh b/.pyanal.sh index 615872c..7fcfdac 100644 --- a/.pyanal.sh +++ b/.pyanal.sh @@ -3,6 +3,6 @@ ROLE=logging PYTHONPATH=$PWD/wrapper /var/local/bin/python3.bash `which pyanalyze` \ - wrapper wrapper_tests/tests_wrapper.py \ + tox_wrapper/tox.py tox_wrapper/tests/tests_wrapper.py \ > .pyanal.out 2>&1 diff --git a/.pylint.sh b/.pylint.sh index 0a0aafb..0fa75cf 100644 --- a/.pylint.sh +++ b/.pylint.sh @@ -5,12 +5,12 @@ ROLE=logging $EXE --recursive y --verbose --py-version 3.11 \ --output-format colorized --rcfile .pylint.rc \ - -E -f text *py [a-nr-z]*/*py > .pylint.err + -E -f text tox_wrapper/*py tox_wrapper/tests/*py > .pylint.err retval=$? $EXE --recursive y --verbose --py-version 3.11 \ --output-format colorized --rcfile .pylint.rc \ - *py [a-nr-z]*/*py > .pylint.out + tox_wrapper/*py tox_wrapper/tests/*py > .pylint.out sed -e "/Module 'os' has no/d" \ -e "/Undefined variable 'app'/d" \