Added errcheck target which only checks for errors.

This commit is contained in:
Bob Lantz
2012-03-02 15:39:05 -08:00
parent 176856bc9b
commit e6d8e974ce
+5
View File
@@ -17,6 +17,11 @@ codecheck: $(PYSRC)
pylint --rcfile=.pylint $(PYSRC)
pep8 --repeat --ignore=$(P8IGN) $(PYSRC)
errcheck: $(PYSRC)
-echo "Running check for errors only"
pyflakes $(PYSRC)
pylint -E --rcfile=.pylint $(PYSRC)
test: $(MININET) $(TEST)
-echo "Running tests"
mininet/test/test_nets.py