[py-svn] pytest-codecheckers commit 6309ddd6bf42: make pep8 show all errors

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Sun Feb 28 20:38:03 CET 2010


# HG changeset patch -- Bitbucket.org
# Project pytest-codecheckers
# URL http://bitbucket.org/RonnyPfannschmidt/pytest-codecheckers/overview/
# User Ronny Pfannschmidt <Ronny.Pfannschmidt at gmx.de>
# Date 1267385688 -3600
# Node ID 6309ddd6bf429cc2eb685a777fd8242c34825ed1
# Parent  a29b2b0766200fe782a6798d326b37df301d7fa6
make pep8 show all errors

--- a/codecheckers/pep.py
+++ b/codecheckers/pep.py
@@ -11,9 +11,10 @@ class PyTestChecker(pep8.Checker):
 def check_file(path):
 
     pep8.process_options(['pep8',
-        #taken from moin
+        # ignore list taken from moin
         '--ignore=E202,E221,E222,E241,E301,E302,E401,E501,E701,W391,W601,W602',
         '--show-source',
+        '--repeat',
         'dummy file',
         ])
     checker = PyTestChecker(str(path))



More information about the pytest-commit mailing list