puppet-pip/spec/acceptance/fixtures/openstack_pip.pp
Clark Boylan 1c6e7f380e Trim the test package list to just shade
We were installing ~24 packages before. Problem with this is it takes
quite a bit of time and is subject to many external failures. Installing
just shade should still be a valid test of significant coverage as it is
a non trivial python package and we use it in quite a few places.

Change-Id: I9cefc83ff280ca00cb434dbe6a1a2357163bc8a6
2017-08-24 15:23:48 -07:00

11 lines
142 B
Puppet

include pip
$packages = [
'shade',
]
package { $packages:
ensure => latest,
provider => openstack_pip,
require => Class['pip'],
}