Load puppet-openstack_spec_helper locally during tests

Change-Id: I74a9b7e780c2c524188072518a7a21b0f7a932af
Co-Authored-By: Mohammed Naser <mnaser@vexxhost.com>
This commit is contained in:
ZhongShengping 2018-02-12 10:53:35 +08:00
parent 69e94bca3b
commit 6de62ee162
1 changed files with 9 additions and 1 deletions

10
Gemfile
View File

@ -1,7 +1,15 @@
source ENV['GEM_SOURCE'] || "https://rubygems.org"
group :development, :test, :system_tests do
gem 'puppet-openstack_spec_helper', :require => 'false', :git => 'https://git.openstack.org/openstack/puppet-openstack_spec_helper'
if ENV['ZUUL_PROJECT'] == 'openstack/puppet-openstack_spec_helper'
gem 'puppet-openstack_spec_helper',
:path => '../..',
:require => 'false'
else
gem 'puppet-openstack_spec_helper',
:git => 'https://git.openstack.org/openstack/puppet-openstack_spec_helper',
:require => 'false'
end
end
if facterversion = ENV['FACTER_GEM_VERSION']