summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Milner <mike.milner@canonical.com>2012-01-12 15:31:19 +0100
committerMike Milner <mike.milner@canonical.com>2012-01-12 15:31:19 +0100
commit1079cab71db58b92e43d2b920ae18c05e0ea8cd3 (patch)
treec1578ddbde12b2af641e20dee99ae3d7ca819aca /Makefile
parent40267132dff97d9912670dcf49c065d0e9def437 (diff)
downloadvyos-cloud-init-1079cab71db58b92e43d2b920ae18c05e0ea8cd3.tar.gz
vyos-cloud-init-1079cab71db58b92e43d2b920ae18c05e0ea8cd3.zip
Add initial unit test framework.
Add initial tests for mergedict.
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..9bc7e8a2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+
+all: test pylint pyflakes
+
+pylint:
+ -pylint cloudinit
+
+pyflakes:
+ -pyflakes .
+
+test:
+ -nosetests tests/unittests/
+
+.PHONY: test pylint pyflakes
+