summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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