Use pip to install stacktach packages.

Use "pip install -e ." rather than "python setup.py install"
to install the stacktach packages for the sandbox.

The setup.py invokes easy_install, which does not work well with
pbr, which we use for requirements. This can cause install of stacktach
requirements to be skipped on a sandbox build. Using pip fixes that.

Change-Id: Ia376806c315a156b39aef9fa21d9ccac6e01e6c4
This commit is contained in:
Monsyne Dragon 2015-06-18 20:02:11 +00:00
parent 32304e1d17
commit 54fcb6c622
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ then
echo "----------------------- $file ------------------------------"
cd $file
rm -rf build dist
python setup.py install -f
pip install --force-reinstall -e .
cd ../..
done
fi