tox: Ignore test modules for pep257.

This commit is contained in:
Florian Bruhin 2015-08-02 22:15:35 +02:00
parent 982a6eccfb
commit b93b32c92f

View File

@ -99,7 +99,7 @@ passenv = PYTHON LANG
# D103: Missing docstring in public function (will be handled by others)
# D209: Blank line before closing """ (removed from PEP257)
# D402: First line should not be function's signature (false-positives)
commands = {envpython} -m pep257 scripts tests qutebrowser --ignore=D102,D103,D209,D402 '--match=(?!resources|test_content_disposition).*\.py'
commands = {envpython} -m pep257 scripts tests qutebrowser --ignore=D102,D103,D209,D402 '--match=(?!resources|test_*).*\.py'
[testenv:pyflakes]
# https://github.com/fschulze/pytest-flakes/issues/6