Tweak Makefile to just run unittests for the "all" target.

This commit is contained in:
Mike Milner 2012-01-12 16:06:27 +01:00
parent 468c2c96ad
commit 66ac74bfb6

View File

@ -1,14 +1,14 @@
all: test pylint pyflakes
all: test
pylint:
-pylint cloudinit
pylint cloudinit
pyflakes:
-pyflakes .
pyflakes .
test:
-nosetests tests/unittests/
nosetests tests/unittests/
.PHONY: test pylint pyflakes