summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Milner <mike.milner@canonical.com>2012-01-12 16:06:27 +0100
committerMike Milner <mike.milner@canonical.com>2012-01-12 16:06:27 +0100
commitdc6fa5f447599ea097ecf31023ba30aa5de5accf (patch)
treef23722a1fb6fbba5a9dcfdb9f9b371c67644500e /Makefile
parent79c43bb0f48333ddfa65c6fb4596cb3528fb8708 (diff)
downloadcloud-init-git-dc6fa5f447599ea097ecf31023ba30aa5de5accf.tar.gz
Tweak Makefile to just run unittests for the "all" target.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 9bc7e8a2..0fc6c46b 100644
--- a/Makefile
+++ b/Makefile
@@ -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