From 9ff35b5372cddb044b825855ded15ca8852242b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <henrik@trineo.org> Date: Tue, 16 Jul 2019 14:49:45 +0200 Subject: [PATCH] ci --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 0ac93add..0aaadadb 100644 --- a/makefile +++ b/makefile @@ -173,11 +173,11 @@ unzip: for f in $(LIBS_ZIP); do unzip -o -d libs $$f; done -PYLINT = pylint -d all -e E,F +PYLINT = pylint3 -d all -e E,F PYTHON_FILES = $(subst $(ROOT_DIR)/,,$(shell find $(ROOT_DIR)/ -iname "*.py")) pylint: $(PYTHON_FILES) for f in $(PYTHON_FILES); do $(PYLINT) $$f || exit 1; done -PYLINT_LOCAL = /usr/bin/pylint -d all -e E,F +PYLINT_LOCAL = /usr/bin/pylint3 -d all -e E,F pylint-local: $(PYTHON_FILES) for f in $(PYTHON_FILES); do $(PYLINT_LOCAL) $$f || exit 1; done -- GitLab