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
commit510d0c0bc5aef9f0c4152f5dfb3ba032f5740e6f (patch)
treeeb4be06a1c8352d8a7dcc8c5d66a373e0dc40047
parentd0f36c9782b3cdc7e413281defaa587a32fc1844 (diff)
downloadpylint-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 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():