(maint) Don't install beaker for spec tests in travis

Prior to this commit, the beaker gem and all its dependencies were
being installed just to run spec tests. Excluding beaker when running
spec tests should make things go faster because we won't have to
install so many gems.
This commit is contained in:
Hailee Kenney 2016-03-22 11:23:12 -07:00
parent 678ba735e8
commit 5d3f013d73
2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
language: ruby
sudo: false
bundler_args: --without development
bundler_args: --without development acceptance
script:
- "bundle exec rake $CHECK"
notifications:

View File

@ -18,9 +18,12 @@ group :test do
gem 'mocha'
gem 'puppetlabs_spec_helper'
gem 'serverspec'
gem 'rubocop'
end
group :acceptance do
gem 'beaker'
gem 'beaker-rspec'
gem 'rubocop'
end
group :development do