summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorJustin Stoller <justin.stoller@gmail.com>2014-11-10 11:56:40 -0800
committerJustin Stoller <justin.stoller@gmail.com>2014-11-10 11:56:40 -0800
commit66434f9036869f0abfabbc89104885ddb105d095 (patch)
tree69f027794fec6869ac4d9ba625d8193046d772c4 /Gemfile
parent850297b560738ff385959a97a96c916105be5631 (diff)
(QENG-1404) Segregate system testing gems
Prior to this there was generic :test group. Unfortunately Beaker will be EOL-ing support for Ruby 1.8 (a number of Beaker's dependencies already have and pinning to older versions is becoming costly). Once Beaker does this it will cause failures whenever running `bundle install`. To avoid this failure we can segregate the system testing gems, allowing unit, lint and development to continue with `bundle install --without system_tests`.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index c2e58ed..74a16f3 100644
--- a/Gemfile
+++ b/Gemfile
@@ -10,15 +10,18 @@ def location_for(place, fake_version = nil)
end
end
-group :development, :test do
+group :development, :unit_tests do
gem 'rake', '~> 10.1.0', :require => false
gem 'rspec-puppet', :require => false
gem 'puppetlabs_spec_helper', :require => false
- gem 'serverspec', :require => false
gem 'puppet-lint', :require => false
gem 'pry', :require => false
gem 'simplecov', :require => false
+end
+
+group :system_tests do
gem 'beaker-rspec', :require => false
+ gem 'serverspec', :require => false
end
ENV['GEM_PUPPET_VERSION'] ||= ENV['PUPPET_GEM_VERSION']