changeset 547:bd02aae24b54

Integrate a fixed-up form of [http://pypi.python.org/pypi/EatLint EatLint] into Bitten: * Summarizer for pylint results * Graph of pylint warnings * This patches the original plugin to not use clearsilver and work with trunk * Tests included Patch from `hodgestar` - fixes #379
author dfraser
date Thu, 02 Apr 2009 13:49:50 +0000
parents 51626fdd20bf
children e42f5644ea91
files bitten/report/tests/__init__.py setup.py
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bitten/report/tests/__init__.py
+++ b/bitten/report/tests/__init__.py
@@ -10,11 +10,12 @@
 
 import unittest
 
-from bitten.report.tests import coverage, testing
+from bitten.report.tests import coverage, lint, testing
 
 def suite():
     suite = unittest.TestSuite()
     suite.addTest(coverage.suite())
+    suite.addTest(lint.suite())
     suite.addTest(testing.suite())
     return suite
 
--- a/setup.py
+++ b/setup.py
@@ -59,6 +59,7 @@
             'bitten.web_ui = bitten.web_ui',
             'bitten.testing = bitten.report.testing',
             'bitten.coverage = bitten.report.coverage',
+            'bitten.lint = bitten.report.lint',
             'bitten.notify = bitten.notify'
         ],
         'bitten.recipe_commands': [
Copyright (C) 2012-2017 Edgewall Software