From 80f1ab522f64edbe7648e1156f4717330ed36fea Mon Sep 17 00:00:00 2001 From: Maru Newby Date: Thu, 27 Mar 2014 17:05:44 -0700 Subject: [PATCH] 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 --- .../files/jenkins_job_builder/config/neutron-api.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openstack_project/files/jenkins_job_builder/config/neutron-api.yaml b/modules/openstack_project/files/jenkins_job_builder/config/neutron-api.yaml index c3db5aa979..71b934f7a0 100644 --- a/modules/openstack_project/files/jenkins_job_builder/config/neutron-api.yaml +++ b/modules/openstack_project/files/jenkins_job_builder/config/neutron-api.yaml @@ -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 }}