From fdfce0bc73fe63a94779f07687115c5f3bcc19d7 Mon Sep 17 00:00:00 2001 From: Shane McDonald Date: Tue, 8 Nov 2016 11:06:21 -0500 Subject: [PATCH] Print flake8 results to stdout and output to file I think? --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f4a7bdaf3e..ae883febcf 100644 --- a/Makefile +++ b/Makefile @@ -462,7 +462,7 @@ pep8: reports @(set -o pipefail && $@ | tee reports/$@.report) flake8: reports - @$@ --output-file=reports/$@.report + @(set -o pipefail && $@ | tee reports/$@.report) pyflakes: reports @(set -o pipefail && $@ | tee reports/$@.report)