From b93b32c92f3aa76ad0e5006b6c238c39354a2080 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 2 Aug 2015 22:15:35 +0200 Subject: [PATCH] tox: Ignore test modules for pep257. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 1881cc878..a989e8e79 100644 --- a/tox.ini +++ b/tox.ini @@ -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