Merge "[trivial] add reason why we skip W503 in pep8 check"

This commit is contained in:
Zuul 2020-04-02 14:53:02 +00:00 committed by Gerrit Code Review
commit 17a604ee15
1 changed files with 2 additions and 1 deletions

View File

@ -53,8 +53,9 @@ commands =
commands = oslo_debug_helper -t sushy/tests {posargs}
[flake8]
# E123, E125 skipped as they are invalid PEP-8.
show-source = True
# E123, E125 skipped as they are invalid PEP-8.
# [W503] Line break occurred before a binary operator. Conflicts with W504.
ignore = E123,E125,W503
# [H106] Don't put vim configuration in source files.
# [H203] Use assertIs(Not)None to check for None.