diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-08-26 10:42:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-26 10:42:47 -0400 |
commit | 577195e3eefe19b95e39f0f52834cd3dc8f77cdf (patch) | |
tree | 435ba7aa27211183036e2a88ad6222b190ea86f2 /utils/Makefile | |
parent | b8e72ea2143834317043f19cbc3dddf8ad9047a5 (diff) | |
parent | 08016cf607b9111a10acabc118551e6d24e88628 (diff) | |
download | openshift-577195e3eefe19b95e39f0f52834cd3dc8f77cdf.tar.gz openshift-577195e3eefe19b95e39f0f52834cd3dc8f77cdf.tar.bz2 openshift-577195e3eefe19b95e39f0f52834cd3dc8f77cdf.tar.xz openshift-577195e3eefe19b95e39f0f52834cd3dc8f77cdf.zip |
Merge pull request #2363 from tbielawa/pep8_fixes_for_quick_installer
Pep8 fixes for quick installer
Diffstat (limited to 'utils/Makefile')
-rw-r--r-- | utils/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/utils/Makefile b/utils/Makefile index b1a3874ae..dd0b5cdd0 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -75,15 +75,7 @@ ci-pep8: @echo "#############################################" @echo "# Running PEP8 Compliance Tests in virtualenv" @echo "#############################################" - @echo "Skipping PEP8 tests until we clean them up" -# . $(NAME)env/bin/activate && pep8 --ignore=E501,E121,E124 src/$(SHORTNAME)/ - -ci-pep8-real: - @echo "#############################################" - @echo "# Running PEP8 Compliance Tests in virtualenv" - @echo "#############################################" . $(NAME)env/bin/activate && pep8 --ignore=E501,E121,E124 src/$(SHORTNAME)/ - -ci: clean virtualenv ci-list-deps ci-pylint ci-pep8 ci-unittests ci-pyflakes +ci: clean virtualenv ci-list-deps ci-pep8 ci-pylint ci-pyflakes ci-unittests : |