diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-15 17:42:05 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-15 17:42:05 -0700 |
commit | a6f387756d74e0542f2247de8cab617043297ced (patch) | |
tree | d90bb79aacd3df8ea2584718f76ec5f28e96fd54 /Makefile | |
parent | 19f5aa0f4bb449a826a0e6a96f318dba4d814443 (diff) | |
download | vyos-cloud-init-a6f387756d74e0542f2247de8cab617043297ced.tar.gz vyos-cloud-init-a6f387756d74e0542f2247de8cab617043297ced.zip |
Updated so that pylint and pyflakes will now run over cloudinit/ and bin/ python files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,11 +1,13 @@ +CWD=$(shell pwd) +PY_FILES=$(shell find cloudinit bin -name "*.py") all: test pylint: - pylint cloudinit + $(CWD)/tools/run-pylint $(PY_FILES) pyflakes: - pyflakes . + pyflakes $(PY_FILES) test: nosetests tests/unittests/ |