summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcheck6
1 files changed, 5 insertions, 1 deletions
diff --git a/check b/check
index 7b06ce7..09efb4f 100755
--- a/check
+++ b/check
@@ -6,4 +6,8 @@ python -m CoverageTestRunner --ignore-missing-from=without-tests
python3 -m CoverageTestRunner --ignore-missing-from=without-tests
rm -f .coverage
pep8 cliapp
-# PYTHONPATH=. pylint --rcfile=pylint.conf cliapp *.py test-plugins/*.py
+if command -v pylint3 > /dev/null
+then
+ title "Static checking"
+ PYTHONPATH=. pylint3 --rcfile=pylint.conf cliapp *.py test-plugins/*.py
+fi