summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorYuriy Zveryanskyy <yzveryanskyy@mirantis.com>2014-10-09 21:23:37 +0300
committerYuriy Zveryanskyy <yzveryanskyy@mirantis.com>2014-10-09 21:37:02 +0300
commit9c725602c4fef9c26ae1d5a19fb1b982a87c1c78 (patch)
tree2d8f2e8df44f7c2ae55532c5ff40ebe9ba53aa63 /tox.ini
parentce309a6b274721b89d85d6b86972f0f30c37a853 (diff)
downloadironic-9c725602c4fef9c26ae1d5a19fb1b982a87c1c78.tar.gz
Fix pep8 test
For hacking 0.9 "ignore" and "select" options are mutually exclusive, therefore pep8 test always passed. This patch fix this bug and also fix long line in keystone module. Closes-Bug: #1379470 Change-Id: Ie8681caa9891bc4f4e257a8e56dc4a30c6f26723
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini5
1 files changed, 2 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index b5ed9dab5..0065bf41a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -46,9 +46,8 @@ commands = {posargs}
[flake8]
# E711: ignored because it is normal to use "column == None" in sqlalchemy
-
-ignore = E12,E711
-select = E713
+# TODO(yuriyz): Analyze or fix the warnings blacklisted below
+ignore = E12,E111,E113,E131,E265,E711,F812,H305,H307,H405,H702,H904
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,*ironic/nova*
[hacking]