Merge "Removed redundant file for flake8 check"

This commit is contained in:
Jenkins 2016-03-08 19:20:37 +00:00 committed by Gerrit Code Review
commit 9167acfd5c
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ commands =
[testenv:pep8]
basepython = python2.7
commands =
flake8 {posargs:swift test doc setup.py doc/source/conf.py}
flake8 {posargs:swift test doc setup.py}
flake8 --filename=swift* bin
[testenv:py3pep8]
@ -39,7 +39,7 @@ commands =
# Gross hack. There's no other way to get it to /not/ install swift itself
# (which triggers installing eventlet) but also get flake8 installed.
pip install flake8
flake8 swift test doc setup.py doc/source/conf.py
flake8 swift test doc setup.py
flake8 --filename=swift* bin
[testenv:func]