Merge "Disable new N537 hacking check from next neutron-lib"

This commit is contained in:
Jenkins 2017-04-19 21:41:09 +00:00 committed by Gerrit Code Review
commit 70d7f03d41
1 changed files with 4 additions and 2 deletions

View File

@ -120,10 +120,12 @@ commands = sphinx-build -W -b html doc/source doc/build/html
# H404 multi line docstring should start with a summary
# H405 multi line docstring summary not separated with an empty line
# N530 direct neutron imports not allowed
# TODO(ihrachys) figure out what to do with N534 and N536
# N534 Untranslated exception message
# N536 Use assertIsNone rather than assertEqual to check for None values
# TODO(ihrachys) figure out what to do with N534 and N536
ignore = E125,E126,E128,E129,E265,H404,H405,N530,N534,N536
# TODO(ihrachys) reenable N537 when new neutron-lib release is available
# N537 Log messages should not be translated
ignore = E125,E126,E128,E129,E265,H404,H405,N530,N534,N536,N537
# H904: Delay string interpolations at logging calls
enable-extensions=H904
show-source = true