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" \