From ae23f634fa48542ac5ef043575404b6f9599dcdf Mon Sep 17 00:00:00 2001 From: Alex Schultz Date: Fri, 20 Jan 2017 15:59:47 -0700 Subject: [PATCH] Add python-gabbi for tempest on Ubuntu The gabbi library is needed for tempest and it's not being installed by the Ubuntu tempest package. So let's add it to try and fixup the tempest test. Change-Id: I711543f3706735966b52f5e56b5b9349b6d2cced --- manifests/tempest.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/tempest.pp b/manifests/tempest.pp index 152b4f2b5..2d61a044b 100644 --- a/manifests/tempest.pp +++ b/manifests/tempest.pp @@ -114,7 +114,7 @@ class openstack_integration::tempest ( # Install missed dependency for neutron tests # https://github.com/openstack/neutron/blob/master/test-requirements.txt#L20 if ($::operatingsystem == 'Ubuntu') and (versioncmp($::operatingsystemmajrelease, '16') >= 0) { - package { ['python-ddt', 'python-oslotest']: + package { ['python-ddt', 'python-oslotest', 'python-gabbi']: ensure => present } }