Fix pep8 gate

This updates the test-requirements to a more recent flake8-docstrings
version.  I also added an ignore for __init__ methods, this may be
something that we want to revisit but are not needed for now.

Change-Id: Id12f6e3b5d603531744d02f7bafab0b80696751e
This commit is contained in:
Dave Wilde 2022-12-20 10:25:53 -06:00
parent bb4cc27a0c
commit 69262d5df4
2 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,7 @@
# process, which may cause wedges in the gate later.
# Hacking already pins down pep8, pyflakes and flake8
hacking>=3.0.1,<3.1.0 # Apache-2.0
flake8-docstrings==0.2.1.post1 # MIT
flake8-docstrings==1.6.0 # MIT
coverage!=4.4,>=4.0 # Apache-2.0
fixtures>=3.0.0 # Apache-2.0/BSD

View File

@ -48,6 +48,7 @@ show-source = True
# D103: Missing docstring in public function
# D104: Missing docstring in public package
# D105: Missing docstring in magic method
# D107: Missing docstring in __init__
# D200: One-line docstring should fit on one line with quotes
# D202: No blank lines allowed after function docstring
# D203: 1 blank required before class docstring
@ -58,5 +59,5 @@ show-source = True
# D401: First line should be in imperative mood
# W503 line break before binary operator
# W504 line break after binary operator
ignore = H405,D100,D101,D102,D103,D104,D105,D200,D202,D203,D204,D205,D208,D400,D401,W503,W504
ignore = H405,D100,D101,D102,D103,D104,D105,D107,D200,D202,D203,D204,D205,D208,D400,D401,W503,W504
exclude = .tox,dist,doc,*.egg,build