Merge "Log stdout from build_wheels in cache_devstack"

This commit is contained in:
Jenkins 2015-03-12 21:46:39 +00:00 committed by Gerrit Code Review
commit 96d208aeed
1 changed files with 3 additions and 1 deletions

View File

@ -100,7 +100,9 @@ def _build_wheelhouse(basedir):
env = os.environ
# Makes output dir for wheelhouse CACHEDIR/wheelhouse
env['WHEELHOUSE'] = os.path.join(CACHEDIR, 'wheelhouse')
run_local(['bash', 'tools/build_wheels.sh'], cwd=DEVSTACK, env=env)
output = run_local(['bash', 'tools/build_wheels.sh'], cwd=DEVSTACK,
env=env)
print output
def local_prep(distribution):