From 1079cab71db58b92e43d2b920ae18c05e0ea8cd3 Mon Sep 17 00:00:00 2001 From: Mike Milner Date: Thu, 12 Jan 2012 15:31:19 +0100 Subject: Add initial unit test framework. Add initial tests for mergedict. --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 + -- cgit v1.2.3 From dc6fa5f447599ea097ecf31023ba30aa5de5accf Mon Sep 17 00:00:00 2001 From: Mike Milner Date: Thu, 12 Jan 2012 16:06:27 +0100 Subject: Tweak Makefile to just run unittests for the "all" target. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3