summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorTim Bielawa <tbielawa@redhat.com>2016-08-24 08:06:03 -0700
committerTim Bielawa <tbielawa@redhat.com>2016-08-24 08:06:03 -0700
commit3fcdee67506b7d7e6f1c5fafdc7d34823b0200cb (patch)
treeb49dd3a9424a31d478daf88291d3ccb6c245f210 /utils
parentbca515bc7fb6a451aee28da02da922f2e57aa6f0 (diff)
downloadopenshift-3fcdee67506b7d7e6f1c5fafdc7d34823b0200cb.tar.gz
openshift-3fcdee67506b7d7e6f1c5fafdc7d34823b0200cb.tar.bz2
openshift-3fcdee67506b7d7e6f1c5fafdc7d34823b0200cb.tar.xz
openshift-3fcdee67506b7d7e6f1c5fafdc7d34823b0200cb.zip
Makefile includes ci-pyflakes target now
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/utils/Makefile b/utils/Makefile
index 55696afe5..b1a3874ae 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -65,6 +65,12 @@ ci-list-deps:
@echo "#############################################"
. $(NAME)env/bin/activate && pip freeze
+ci-pyflakes:
+ @echo "#################################################"
+ @echo "# Running Pyflakes Compliance Tests in virtualenv"
+ @echo "#################################################"
+ . $(NAME)env/bin/activate && pyflakes src/ooinstall/*.py
+
ci-pep8:
@echo "#############################################"
@echo "# Running PEP8 Compliance Tests in virtualenv"
@@ -79,5 +85,5 @@ ci-pep8-real:
. $(NAME)env/bin/activate && pep8 --ignore=E501,E121,E124 src/$(SHORTNAME)/
-ci: clean virtualenv ci-list-deps ci-pylint ci-pep8 ci-unittests
+ci: clean virtualenv ci-list-deps ci-pylint ci-pep8 ci-unittests ci-pyflakes
: