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) ###