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
commitb2e4b5796db6c165460a6b37e7360bffe84d734e (patch)
tree3a687d8e9db6b730dbaa25bf2efa96dbd7a1e184
parent14a9fd22e78f0386b4ce657b4b220b5177ab9985 (diff)
downloadpylint-b2e4b5796db6c165460a6b37e7360bffe84d734e.tar.gz
Disable persistence for test_self.
-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 fae6403..b3348ab 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():