Issue #27322: Set sys.path to a temp dir in test_compile_path

This commit is contained in:
Berker Peksag 2016-09-28 17:38:53 +03:00
parent eadf443e9a
commit 408b78c06f
1 changed files with 2 additions and 13 deletions

View File

@ -103,19 +103,8 @@ 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]):
self.assertTrue(compileall.compile_path(quiet=2))
with test.test_importlib.util.import_state(path=[self.directory]):
self.add_bad_source_file()