summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/tests/test_command_install_lib.py
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-10-08 02:09:15 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-10-08 02:09:15 (GMT)
commita29e4f64c1dfeb4ca1cf9f4c9636cb4528b2fd8c (patch)
treef162133d4375ac1c80313861d6e409c186a849ee /Lib/packaging/tests/test_command_install_lib.py
parent73b1e7dd2098279910e89454d5ba92d5b46370da (diff)
downloadcpython-a29e4f64c1dfeb4ca1cf9f4c9636cb4528b2fd8c.zip
cpython-a29e4f64c1dfeb4ca1cf9f4c9636cb4528b2fd8c.tar.gz
cpython-a29e4f64c1dfeb4ca1cf9f4c9636cb4528b2fd8c.tar.bz2
Fix packaging byte-compilation to comply with PEP 3147 (#11254).
I want to replace custom byte-compiling function with calls to compileall before 3.3b1, but in the short term it’s good to have this fixed. Adapted from the distutils patch by Jeff Ramnani. I tested with -B, -O and -OO; test_util and test_mixin2to3 fail in -O mode because lib2to3 doesn’t support it.
Diffstat (limited to 'Lib/packaging/tests/test_command_install_lib.py')
-rw-r--r--Lib/packaging/tests/test_command_install_lib.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/Lib/packaging/tests/test_command_install_lib.py b/Lib/packaging/tests/test_command_install_lib.py
index 9118e68..3f36822 100644
--- a/Lib/packaging/tests/test_command_install_lib.py
+++ b/Lib/packaging/tests/test_command_install_lib.py
@@ -1,6 +1,7 @@
"""Tests for packaging.command.install_data."""
-import sys
import os
+import sys
+import imp
from packaging.tests import unittest, support
from packaging.command.install_lib import install_lib
@@ -36,6 +37,7 @@ class InstallLibTestCase(support.TempdirManager,
@unittest.skipIf(sys.dont_write_bytecode, 'byte-compile disabled')
def test_byte_compile(self):
pkg_dir, dist = self.create_dist()
+ os.chdir(pkg_dir)
cmd = install_lib(dist)
cmd.compile = True
cmd.optimize = 1
@@ -43,8 +45,10 @@ class InstallLibTestCase(support.TempdirManager,
f = os.path.join(pkg_dir, 'foo.py')
self.write_file(f, '# python file')
cmd.byte_compile([f])
- self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyc')))
- self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyo')))
+ pyc_file = imp.cache_from_source('foo.py')
+ pyo_file = imp.cache_from_source('foo.py', debug_override=False)
+ self.assertTrue(os.path.exists(pyc_file))
+ self.assertTrue(os.path.exists(pyo_file))
def test_get_outputs(self):
pkg_dir, dist = self.create_dist()