flake8 - remove unused rules

Change-Id: Ibe23b07d82be32bf7bcdc69ef259d3eaaebf0435
This commit is contained in:
Davanum Srinivas 2015-08-07 22:13:20 -04:00 committed by Davanum Srinivas (dims)
parent ae32983198
commit f222f80930
1 changed files with 1 additions and 4 deletions

View File

@ -29,11 +29,8 @@ commands = python setup.py build_sphinx
commands = python setup.py testr --coverage --testr-args='{posargs}'
[flake8]
# H803 skipped on purpose per list discussion.
# E123, E125 skipped as they are invalid PEP-8.
ignore = E123,H405
show-source = True
ignore = E123,E125,H302,H304,H405,H803
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,__init__.py
[testenv:pip-missing-reqs]