Commit 73124a89 authored by Jason R. Coombs's avatar Jason R. Coombs

Rewrite command construction for clarity.

parent 0dc996c4
......@@ -48,12 +48,15 @@ class TestEggInfo:
))
environ = os.environ.copy()
environ['HOME'] = paths['home']
cmd = [
'install',
'--home', paths['home'],
'--install-lib', paths['lib'],
'--install-scripts', paths['scripts'],
'--install-data', paths['data'],
]
code, data = environment.run_setup_py(
cmd=[
'install', '--home', paths['home'],
'--install-lib', paths['lib'],
'--install-scripts', paths['scripts'],
'--install-data', paths['data']],
cmd=cmd,
pypath=os.pathsep.join([paths['lib'], str(tmpdir_cwd)]),
data_stream=1,
env=environ)
......
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