Added new hacking version to requirements

* Added hacking>=0.9.1,<0.10 according to change
  I4e5f370607936144c11585453f3b1db7a26eff9c
* Ignored all pep8 errors to work with new version

Change-Id: Ia99d1bbcbacd686d6d9de5aeacc13e6066bf49cc
This commit is contained in:
Alexander Ignatov 2014-06-16 09:29:12 +04:00
parent d389a552eb
commit 81a8c6e634
2 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,4 @@
hacking>=0.8.0,<0.9
hacking>=0.9.1,<0.10
coverage>=3.6
discover

View File

@ -28,6 +28,13 @@ commands = flake8
commands = {posargs}
[flake8]
# E226 missing whitespace around arithmetic operator
# E251 unexpected spaces around keyword / parameter equals
# E265 block comment should start with '# '
# H305 imports not grouped correctly (re: stdlib, six: third-party)
# H307 like imports should be grouped together (six and oslo.config.cfg from third-party are separated by whitespace)
# H904 Wrap long lines in parentheses instead of a backslash
ignore = E226,E251,E265,H305,H307,H904
show-source = true
builtins = _
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools,horizon