From bd01eb7516a6130bb69bcfc1e57b4e0f99cb71d0 Mon Sep 17 00:00:00 2001 From: josebb Date: Wed, 4 May 2022 21:13:28 +0300 Subject: [PATCH] Add barbican-tempest-plugin in tempest image Install pip packages with upper-constraints Change-Id: I848a0c841bb31742c72abdb6e911c915eb44e725 --- tempest/Dockerfile.ubuntu_focal | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tempest/Dockerfile.ubuntu_focal b/tempest/Dockerfile.ubuntu_focal index 3c0d368d..336fc75c 100644 --- a/tempest/Dockerfile.ubuntu_focal +++ b/tempest/Dockerfile.ubuntu_focal @@ -14,13 +14,17 @@ RUN set -ex ;\ git ;\ pip3 install -U pip ;\ git clone https://git.openstack.org/openstack/tempest ;\ + git clone https://git.openstack.org/openstack/barbican-tempest-plugin ;\ git clone https://git.openstack.org/openstack/cinder-tempest-plugin ;\ git clone https://git.openstack.org/openstack/heat-tempest-plugin ;\ git clone https://git.openstack.org/openstack/keystone-tempest-plugin ;\ git clone https://git.openstack.org/openstack/neutron-tempest-plugin ;\ + git clone https://git.openstack.org/openstack/requirements ;\ pip3 install -U setuptools==58.0.0 ;\ pip3 install wheel ;\ - pip3 install -e tempest/ \ + pip3 install -c requirements/upper-constraints.txt \ + tempest/ \ + barbican-tempest-plugin/ \ cinder-tempest-plugin/ \ heat-tempest-plugin/ \ keystone-tempest-plugin/ \