summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Milner <mike.milner@canonical.com>2012-01-12 16:10:03 +0100
committerMike Milner <mike.milner@canonical.com>2012-01-12 16:10:03 +0100
commit6ceb460199720335e70ed6965a0f393563ba730d (patch)
tree734e0f3483761617e60ebe1f89cd95e716b232e3 /Makefile
parenteea65faf117d6d3e8566d419477e7e54209100c1 (diff)
parentdc6fa5f447599ea097ecf31023ba30aa5de5accf (diff)
downloadvyos-cloud-init-6ceb460199720335e70ed6965a0f393563ba730d.tar.gz
vyos-cloud-init-6ceb460199720335e70ed6965a0f393563ba730d.zip
Merge from unittest branch.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..0fc6c46b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+
+all: test
+
+pylint:
+ pylint cloudinit
+
+pyflakes:
+ pyflakes .
+
+test:
+ nosetests tests/unittests/
+
+.PHONY: test pylint pyflakes
+