Stop ignoring E265 pycodestyle rule in tox

This change is one in the series of changes to
align os-brick with Cinder rules.

- E265 'block comment should start with "# " '

See following for more information:
 https://github.com/PyCQA/pycodestyle

Change-Id: I392d5ed179ddf1fd644cb3b53436f2aee2f47cbe
Signed-off-by: Maciej Kucia <maciej@kucia.net>
This commit is contained in:
Maciej Kucia 2017-05-21 23:04:42 +02:00
parent 32b4b24bfc
commit 211bda0a04
1 changed files with 1 additions and 4 deletions

View File

@ -64,9 +64,6 @@ commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasen
# E251 unexpected spaces around keyword / parameter equals
# reason: no improvement in readability
#
# E265 block comment should start with '# '
# reason: no improvement in readability
#
# H402 one line docstring needs punctuation
# reason: removed in hacking (https://review.openstack.org/#/c/101497/)
#
@ -81,7 +78,7 @@ commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasen
show-source = True
ignore = E251,E265,H405,H904
ignore = E251,H405,H904
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
max-complexity=30