Skip to content
Snippets Groups Projects
Commit e6d8e974 authored by Bob Lantz's avatar Bob Lantz
Browse files

Added errcheck target which only checks for errors.

parent 176856bc
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment