From dcdc10d31443be8e8499661ef72ad92381fe67df Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Wed, 22 Sep 2021 15:08:29 +0200 Subject: [PATCH] add lint tools versions --- tests.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests.sh b/tests.sh index 641a916..debebcf 100755 --- a/tests.sh +++ b/tests.sh @@ -6,6 +6,14 @@ #set -ev set -e +# versions +echo "pylint version:" +pylint --version +echo "pycodestyle version:" +pycodestyle --version +echo "pyflakes version:" +pyflakes --version + # PEP8 tests which pycodestyle >/dev/null 2>&1 [ "$?" != "0" ] && echo "Install pycodestyle" && exit 1 @@ -39,6 +47,8 @@ which ${nosebin} >/dev/null 2>&1 [ "$?" != "0" ] && nosebin="nosetests3" which ${nosebin} >/dev/null 2>&1 [ "$?" != "0" ] && echo "Install nosetests" && exit 1 +echo "nose version:" +${nosebin} --version # do not print debugs when running tests (faster) export DOTDROP_FORCE_NODEBUG=yes