From 90b16debc3050b7bc2590717c6fb9a3e7c25fa4e Mon Sep 17 00:00:00 2001 From: Chandan kumar Date: Mon, 19 Aug 2019 19:42:57 +0530 Subject: [PATCH] Use openstack-tempest-all for rpm tempest container openstack-tempest shipped from RDO does not have the tempest plugins, It has just tempest cli and library. https://review.opendev.org/#/c/651601/ updated the rpm package name while solving different issue and TripleO stein CI, most of the tempest tests are getting skipped as tempest plugins are not there. openstack-tempest-all is the meta package contains all the plugins, and installing that fixes the issue. Change-Id: Ifb616b082c9d82f4736e4b688cafc3a58a0c7a9f Signed-off-by: Chandan kumar --- docker/tempest/Dockerfile.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/tempest/Dockerfile.j2 b/docker/tempest/Dockerfile.j2 index ee8d938d51..ec0edf161d 100644 --- a/docker/tempest/Dockerfile.j2 +++ b/docker/tempest/Dockerfile.j2 @@ -9,7 +9,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build {% if install_type == 'binary' %} {% if base_package_type == 'rpm' %} - {% set tempest_packages = ['openstack-tempest'] %} + {% set tempest_packages = ['openstack-tempest-all'] %} {% elif base_package_type == 'deb' %} {% set tempest_packages = ['tempest'] %}