summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVlad Temian <vladtemian@gmail.com>2014-11-22 12:42:29 +0200
committerVlad Temian <vladtemian@gmail.com>2014-11-22 12:42:29 +0200
commit5f33e5e5d7cace3aa7e839fb08dc7eb3f2219460 (patch)
tree0709eee4f3fb8369d26a8643f12e319e6ffa0c3b
parent410300e57b2225ca4aab5c25d8b6b85cf728649b (diff)
downloadpylint-5f33e5e5d7cace3aa7e839fb08dc7eb3f2219460.tar.gz
Added JSONReporter to test_self.py.RunTC.test_all
-rw-r--r--test/test_self.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_self.py b/test/test_self.py
index 7a48ee0..6ef3c49 100644
--- a/test/test_self.py
+++ b/test/test_self.py
@@ -22,6 +22,7 @@ from pylint.lint import Run
from pylint.reporters import BaseReporter
from pylint.reporters.text import *
from pylint.reporters.html import HTMLReporter
+from pylint.reporters.json import JSONReporter
HERE = abspath(dirname(__file__))
@@ -93,7 +94,8 @@ class RunTC(unittest.TestCase):
reporters = [
TextReporter(StringIO()),
HTMLReporter(StringIO()),
- ColorizedTextReporter(StringIO())
+ ColorizedTextReporter(StringIO()),
+ JSONReporter(StringIO()),
]
self._runtest(['pylint/test/functional/arguments.py'],
reporter=MultiReporter(reporters), code=1)