jenkins-bot has submitted this change and it was merged.
Change subject: Ignore missing docstring in PEP257 ......................................................................
Ignore missing docstring in PEP257
For a while in order to reduce number of errors. We'll get to them later
Change-Id: I2344b40eda4b437762c4ab48654b246c4db16ebe --- M tox.ini 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: John Vandenberg: Looks good to me, approved jenkins-bot: Verified
diff --git a/tox.ini b/tox.ini index 00fcf0d..3022ca6 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ deps = flake8
[testenv:flake8-docstrings] -commands = flake8 --select=D {posargs} --jobs=1 +commands = flake8 {posargs} --jobs=1 --ignore=D102,D103 deps = flake8-docstrings # Note: flake8 is run here with --jobs=1 to disable multiprocessing which stall # the run with flake8-docstrings / pep257.
pywikibot-commits@lists.wikimedia.org