From: Victor Stinner Date: Mon, 18 Jan 2016 10:25:50 +0000 (+0100) Subject: Fix test_compilepath() of test_compileall X-Git-Tag: v3.6.0a1~749 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c437d0cb4e99bd58ff0150414b5d5f0b26605687;p=python Fix test_compilepath() of test_compileall Issue #26101: Exclude Lib/test/ from sys.path in test_compilepath(). The directory contains invalid Python files like Lib/test/badsyntax_pep3120.py, whereas the test ensures that all files can be compiled. --- diff --git a/Lib/test/test_compileall.py b/Lib/test/test_compileall.py index 439c125edb..6d8a86352f 100644 --- a/Lib/test/test_compileall.py +++ b/Lib/test/test_compileall.py @@ -103,6 +103,18 @@ class CompileallTests(unittest.TestCase): force=False, quiet=2)) def test_compile_path(self): + # Exclude Lib/test/ which contains invalid Python files like + # Lib/test/badsyntax_pep3120.py + testdir = os.path.realpath(os.path.dirname(__file__)) + if testdir in sys.path: + self.addCleanup(setattr, sys, 'path', sys.path) + + sys.path = list(sys.path) + try: + sys.path.remove(testdir) + except ValueError: + pass + self.assertTrue(compileall.compile_path(quiet=2)) with test.test_importlib.util.import_state(path=[self.directory]):