From 854b237970d870cf9efa68e73090f87c380ef4d0 Mon Sep 17 00:00:00 2001 From: Benoit Calvez Date: Thu, 17 Nov 2016 11:49:06 +0100 Subject: [PATCH] adds pylint tests --- .travis.yml | 2 +- Makefile | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2807a2f..b915d0c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ install: - pip install -r requirements_dev.txt - pip install --editable . - pip freeze -script: make test +script: "make test && make pylint" notifications: email: true irc: diff --git a/Makefile b/Makefile index ab1414f..6b6bb84 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,9 @@ test: update: pip install -r requirements_dev.txt +pylint: + pylint aioamqp + ### semi-private targets used by polyconseil's CI (copy-pasted from blease) ###