summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-12-02 17:47:49 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-12-02 17:47:49 +0200
commitf6e39fcd4db5f28dec90d4923616f0545063078e (patch)
tree942ea11092e47b9fa4b61d48377db63da4083a28
parentdfa6e745ea30a72fa2b381284dc0cdb57536ad9d (diff)
downloadpylint-git-pylint-1.5.1.tar.gz
Disable persistence for test_self.pylint-1.5.1
-rw-r--r--pylint/test/test_self.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pylint/test/test_self.py b/pylint/test/test_self.py
index fae640367..b3348abb8 100644
--- a/pylint/test/test_self.py
+++ b/pylint/test/test_self.py
@@ -92,6 +92,7 @@ class RunTC(unittest.TestCase):
self.assertEqual(pylint_code, code, msg)
def _run_pylint(self, args, out, reporter=None):
+ args = args + ['--persistent=no']
with _patch_streams(out):
with self.assertRaises(SystemExit) as cm:
with warnings.catch_warnings():