diff options
author | Tim Bielawa <tbielawa@redhat.com> | 2016-08-24 08:06:03 -0700 |
---|---|---|
committer | Tim Bielawa <tbielawa@redhat.com> | 2016-08-24 08:06:03 -0700 |
commit | 3fcdee67506b7d7e6f1c5fafdc7d34823b0200cb (patch) | |
tree | b49dd3a9424a31d478daf88291d3ccb6c245f210 | |
parent | bca515bc7fb6a451aee28da02da922f2e57aa6f0 (diff) | |
download | openshift-3fcdee67506b7d7e6f1c5fafdc7d34823b0200cb.tar.gz openshift-3fcdee67506b7d7e6f1c5fafdc7d34823b0200cb.tar.bz2 openshift-3fcdee67506b7d7e6f1c5fafdc7d34823b0200cb.tar.xz openshift-3fcdee67506b7d7e6f1c5fafdc7d34823b0200cb.zip |
Makefile includes ci-pyflakes target now
-rw-r--r-- | utils/Makefile | 8 |
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 : |