From 329bb31dbfb7675a21605d552999c59432ef7b10 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 31 Jul 2018 11:13:38 +0300 Subject: Change: run pylint3 if available --- check | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/check b/check index 1518c15..13d781f 100755 --- a/check +++ b/check @@ -66,8 +66,11 @@ python3 -m CoverageTestRunner --ignore-missing-from=without-tests qvisqve qvisqv title "Code style" pycodestyle qvisqve qvisqve_secrets -title "Static checking" -pylint3 -j0 --rcfile pylint.conf qvisqve qvisqve_secrets +if command -v pylint3 > /dev/null +then + # title "Static checking" + # pylint3 -j0 --rcfile pylint.conf qvisqve qvisqve_secrets +fi title "Run yarns" if [ "$remote" = no ] -- cgit v1.2.1