diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-01-12 16:42:47 +0100 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-01-12 16:42:47 +0100 |
commit | 982856531a3498d784e3977f307a9cbf2a673977 (patch) | |
tree | 58e2462994c96fabdc536517f41a901f750b354a /Makefile | |
parent | ad3a229c82409936f5f01b3a03507cd5ed3031d9 (diff) | |
parent | dc6fa5f447599ea097ecf31023ba30aa5de5accf (diff) | |
download | vyos-cloud-init-982856531a3498d784e3977f307a9cbf2a673977.tar.gz vyos-cloud-init-982856531a3498d784e3977f307a9cbf2a673977.zip |
add unit test framework (LP: #890851)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
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 + |