From ba1cb8e5b67c52d29d7bb53f4eccc009a5f18704 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Sat, 28 Jan 2023 11:53:47 +0100 Subject: [PATCH] improve testing --- test-syntax.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/test-syntax.sh b/test-syntax.sh index 87248af..d882184 100755 --- a/test-syntax.sh +++ b/test-syntax.sh @@ -50,14 +50,19 @@ find . -iname '*.sh' | while read -r script; do -e SC2002 \ -e SC2126 \ -e SC2129 \ - -e SC2181 "${script}" + -e SC2181 \ + "${script}" done # check other python scripts echo "checking other python scripts with pylint" find . -name "*.py" -not -path "./dotdrop/*" | while read -r script; do echo "checking ${script}" - pylint --reports=no "${script}" + pylint -sn \ + --disable=R0914 \ + --disable=R0915 \ + --disable=R0913 \ + "${script}" done # PEP8 tests