From b2e4b5796db6c165460a6b37e7360bffe84d734e Mon Sep 17 00:00:00 2001 From: Claudiu Popa Date: Wed, 2 Dec 2015 17:47:49 +0200 Subject: Disable persistence for test_self. --- pylint/test/test_self.py | 1 + 1 file changed, 1 insertion(+) 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(): -- cgit v1.2.1