From 340b28a8fba99a2b751551732a82aa66f975582b Mon Sep 17 00:00:00 2001 From: Ferry Boender Date: Thu, 18 Jun 2015 08:11:58 +0200 Subject: [PATCH] Tweaks to the test reporting. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e234a1a..a4e0e2c 100644 --- a/Makefile +++ b/Makefile @@ -101,6 +101,6 @@ test: @echo "\nTESTS\n" cd test && python ./test.py @echo "\nFLAKE8\n" - cd src && flake8 *.py | grep -v "line too long" || true + cd src && flake8 *.py || true @echo "\nPYLINT\n" - cd src && pylint -dW0142 *.py || true + cd src && pylint --reports=n -dR -dW0142 *.py || true