From e46541ac760c12b7f4545e0a3bad5147482baa5f Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Wed, 9 Aug 2023 21:57:14 +0200 Subject: [PATCH] tests --- scripts/check-syntax.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/check-syntax.sh b/scripts/check-syntax.sh index ad22953..63743d8 100755 --- a/scripts/check-syntax.sh +++ b/scripts/check-syntax.sh @@ -36,7 +36,12 @@ echo "=> pyflakes version:" pyflakes --version # checking for TODO/FIXME -grep -r 'TODO\|FIXME' +echo "--------------------------------------" +echo "checking for TODO/FIXME" +grep -rv 'TODO\|FIXME' dotdrop/ >/dev/null 2>&1 +grep -rv 'TODO\|FIXME' tests/ >/dev/null 2>&1 +grep -rv 'TODO\|FIXME' tests-ng/ >/dev/null 2>&1 +grep -rv 'TODO\|FIXME' scripts/ >/dev/null 2>&1 # PEP8 tests # W503: Line break occurred before a binary operator