Fix tempest installation for neutron api job

Installing a package as --editable requires owning the target path,
so let's just skip that and install non-editable.

Change-Id: I03c26943ef84887e8c8238ffd83b91af8cc8eb39
This commit is contained in:
Maru Newby 2014-03-27 17:05:44 -07:00
parent 8355b61317
commit 80f1ab522f

View File

@ -34,7 +34,7 @@
# best to include tempest as an explicit test dependency
# of neutron.
sudo -H -u tempest tox -e api --notest
sudo -H -u tempest .tox/api/bin/pip install -e $BASE/new/tempest
sudo -H -u tempest .tox/api/bin/pip install $BASE/new/tempest
echo "Running neutron api test suite"
sudo -H -u tempest tox -e api
}}