From 2626693241d5a5652861af32865ae32c819eb349 Mon Sep 17 00:00:00 2001 From: Bob Lantz <rlantz@cs.stanford.edu> Date: Mon, 8 Mar 2010 15:31:23 -0800 Subject: [PATCH] Changed to report repeated pep8 issues. --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 56bca3e1..056c05a1 100644 --- a/Makefile +++ b/Makefile @@ -5,15 +5,16 @@ clean: MININET = mininet/*.py TEST = mininet/test/*.py +EXAMPLES = examples/*.py BIN = bin/mn bin/mnclean -PYSRC = $(MININET) $(TEST) $(BIN) +PYSRC = $(MININET) $(TEST) $(EXAMPLES) $(BIN) P8IGN = E251,E201,E302 codecheck: $(PYSRC) pyflakes $(PYSRC) pylint --rcfile=.pylint $(PYSRC) - pep8 --ignore=$(P8IGN) $(PYSRC) + pep8 --repeat --ignore=$(P8IGN) $(PYSRC) test: $(MININET) $(TEST) mininet/test/test_nets.py -- GitLab