コード例 #1
0
 def test_with_pyflakes(self):
     """
     Run pyflakes across the code base to check for potential errors.
     """
     warnings = run_pyflakes_for_package("mezzanine")
     if warnings:
         warnings.insert(0, "pyflakes warnings:")
         self.fail("\n".join(warnings))
コード例 #2
0
ファイル: tests.py プロジェクト: cmarrero/mezzanine
 def test_with_pyflakes(self):
     """
     Run pyflakes across the code base to check for potential errors.
     """
     warnings = run_pyflakes_for_package("mezzanine")
     if warnings:
         warnings.insert(0, "pyflakes warnings:")
         self.fail("\n".join(warnings))
コード例 #3
0
 def test_syntax(self):
     """
     Run pyflakes/pep8 across the code base to check for potential errors.
     """
     warnings = []
     warnings.extend(run_pyflakes_for_package("mezzanine"))
     warnings.extend(run_pep8_for_package("mezzanine"))
     if warnings:
         self.fail("Syntax warnings!\n\n%s" % "\n".join(warnings))
コード例 #4
0
ファイル: tests.py プロジェクト: BeUnique/cartridge
 def test_with_pyflakes(self):
     """
     Run pyflakes across the code base to check for potential errors.
     """
     ignore = ("redefinition of unused 'digest'",
               "redefinition of unused 'info'")
     warnings = run_pyflakes_for_package("cartridge", extra_ignore=ignore)
     if warnings:
         warnings.insert(0, "pyflakes warnings:")
         self.fail("\n".join(warnings))
コード例 #5
0
 def test_syntax(self):
     """
     Run pyflakes/pep8 across the code base to check for potential errors.
     """
     packages = settings.PACKAGES_TO_TEST
     warnings = []
     # Eventually should use flake8 instead so we can ignore specific lines via a comment
     for package in packages:
         warnings.extend(run_pyflakes_for_package(package, extra_ignore=("_settings",)))
         warnings.extend(run_pep8_for_package(package, extra_ignore=("_settings",)))
     if warnings:
         self.fail("{0} Syntax warnings!\n\n{1}".format(len(warnings), "\n".join(warnings)))
コード例 #6
0
ファイル: tests.py プロジェクト: pombredanne/cartridge
 def test_syntax(self):
     """
     Run pyflakes/pep8 across the code base to check for potential errors.
     """
     extra_ignore = ("redefinition of unused 'digest'",
                     "redefinition of unused 'info'")
     warnings = []
     warnings.extend(run_pyflakes_for_package("cartridge",
                                              extra_ignore=extra_ignore))
     warnings.extend(run_pep8_for_package("cartridge"))
     if warnings:
         self.fail("Syntax warnings!\n\n%s" % "\n".join(warnings))
コード例 #7
0
ファイル: tests.py プロジェクト: CDC/cartridge
 def test_syntax(self):
     """
     Run pyflakes/pep8 across the code base to check for potential errors.
     """
     extra_ignore = ("redefinition of unused 'digest'",
                     "redefinition of unused 'OperationalError'",)
     warnings = []
     warnings.extend(run_pyflakes_for_package("cartridge",
                                              extra_ignore=extra_ignore))
     warnings.extend(run_pep8_for_package("cartridge"))
     if warnings:
         self.fail("Syntax warnings!\n\n%s" % "\n".join(warnings))
コード例 #8
0
ファイル: tests.py プロジェクト: hithaieshl/cartridge
 def test_syntax(self):
     """
     Run pyflakes/pep8 across the code base to check for potential errors.
     """
     extra_ignore = (
         "redefinition of unused 'digest'",
         "redefinition of unused 'OperationalError'",
         "'from mezzanine.project_template.settings import *' used",
     )
     warnings = []
     warnings.extend(run_pyflakes_for_package("cartridge", extra_ignore=extra_ignore))
     warnings.extend(run_pep8_for_package("cartridge"))
     if warnings:
         self.fail("Syntax warnings!\n\n%s" % "\n".join(warnings))
コード例 #9
0
ファイル: tests.py プロジェクト: alekhinen/manticore-django
 def test_syntax(self):
     """
     Run pyflakes/pep8 across the code base to check for potential errors.
     """
     packages = settings.PACKAGES_TO_TEST
     warnings = []
     # Eventually should use flake8 instead so we can ignore specific lines via a comment
     for package in packages:
         warnings.extend(
             run_pyflakes_for_package(package,
                                      extra_ignore=("_settings", )))
         warnings.extend(
             run_pep8_for_package(package, extra_ignore=("_settings", )))
     if warnings:
         self.fail("{0} Syntax warnings!\n\n{1}".format(
             len(warnings), "\n".join(warnings)))