Commit 382a7c01 authored by Vinay Sajip's avatar Vinay Sajip

Tweaked tests to use launcher executable name on OS X.

parent 44697468
......@@ -29,7 +29,11 @@ class BaseTest(unittest.TestCase):
self.ps3name = 'pysetup3'
self.lib = ('lib', 'python%s' % sys.version[:3])
self.include = 'include'
self.exe = os.path.split(sys.executable)[-1]
if sys.platform == 'darwin' and '__PYTHONV_LAUNCHER__' in env:
executable = os.environ['__PYTHONV_LAUNCHER__']
else:
executable = sys.executable
self.exe = os.path.split(executable)[-1]
def tearDown(self):
shutil.rmtree(self.env_dir)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment