Skip to content

Commit f229228

Browse files
exclude beaker from travis tests
Excluding beaker from the travis test run really speeds up the test run as beaker pulls in a lot of unneeded dependencies.
1 parent 677a7ca commit f229228

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
language: ruby
2+
bundler_args: --without system_tests
23
rvm:
34
- 1.9.3
45
- 2.0.0

Gemfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ end
1010
gem 'rake'
1111
gem 'rspec'
1212
gem 'puppet-lint'
13-
gem 'beaker'
14-
gem 'beaker-rspec'
1513
gem 'rspec-puppet'
1614
gem 'puppetlabs_spec_helper'
1715
gem 'puppet-syntax'
16+
17+
group :system_tests do
18+
gem 'beaker'
19+
gem 'beaker-rspec'
20+
end

0 commit comments

Comments
 (0)