summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ab23bf1f..c20dfbd3 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,9 @@ PY_FILES+="bin/cloud-init"
all: test
+pep8:
+ $(CWD)/tools/run-pep8 $(PY_FILES)
+
pylint:
$(CWD)/tools/run-pylint $(PY_FILES)
@@ -20,5 +23,5 @@ clean:
rm -rf /var/log/cloud-init.log \
/var/lib/cloud/
-.PHONY: test pylint pyflakes 2to3 clean
+.PHONY: test pylint pyflakes 2to3 clean pep8