diff options
author | Mike Milner <mike.milner@canonical.com> | 2012-01-12 16:06:27 +0100 |
---|---|---|
committer | Mike Milner <mike.milner@canonical.com> | 2012-01-12 16:06:27 +0100 |
commit | dc6fa5f447599ea097ecf31023ba30aa5de5accf (patch) | |
tree | f23722a1fb6fbba5a9dcfdb9f9b371c67644500e /Makefile | |
parent | 79c43bb0f48333ddfa65c6fb4596cb3528fb8708 (diff) | |
download | vyos-cloud-init-dc6fa5f447599ea097ecf31023ba30aa5de5accf.tar.gz vyos-cloud-init-dc6fa5f447599ea097ecf31023ba30aa5de5accf.zip |
Tweak Makefile to just run unittests for the "all" target.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |