diff options
-rw-r--r-- | tests/platform-ci/Gemfile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/platform-ci/Gemfile b/tests/platform-ci/Gemfile index aea88237..36f556e5 100644 --- a/tests/platform-ci/Gemfile +++ b/tests/platform-ci/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" group :test do gem "rake" - gem "rspec", '< 3.2.0' + gem "rspec" gem "puppet", ENV['PUPPET_VERSION'] || ENV['GEM_PUPPET_VERSION'] || ENV['PUPPET_GEM_VERSION'] || '~> 3.8' gem "facter", ENV['FACTER_VERSION'] || ENV['GEM_FACTER_VERSION'] || ENV['FACTER_GEM_VERSION'] || '~> 2.2.0' gem "rspec-puppet" @@ -10,6 +10,8 @@ group :test do gem "metadata-json-lint" gem "rspec-puppet-facts" gem "mocha" - gem "puppet-catalog-test" + # Use puppet-catalog-test from git because last released gem 0.4.2 gives a deprecation + # warning: "[DEPRECATION] `last_comment` is deprecated. Please use `last_description` instead." + gem "puppet-catalog-test", :git => 'https://github.com/invadersmustdie/puppet-catalog-test.git' gem "leap_cli", :git => 'https://leap.se/git/leap_cli.git', :branch => 'develop' end |