-
-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from petems/add_travis_beaker_acceptance_docker
Add Beaker Travis acceptance tests
- Loading branch information
Showing
10 changed files
with
121 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,6 @@ Gemfile.lock | |
spec/fixtures | ||
!spec/fixtures/hiera.yaml | ||
!spec/fixtures/hieradata/* | ||
|
||
log/ | ||
junit/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,35 @@ | ||
source "https://rubygems.org" | ||
source ENV['GEM_SOURCE'] || "https://rubygems.org" | ||
|
||
group :test do | ||
gem "rake" | ||
gem "puppet", ENV['PUPPET_VERSION'] || '~> 3.7.0' | ||
gem 'rake', '< 11' | ||
gem "puppet", ENV['PUPPET_GEM_VERSION'] || '~> 3.8.0' | ||
gem 'safe_yaml', '~> 1.0.4' | ||
gem "rspec", '< 3.2.0' | ||
gem "rspec-puppet", :git => 'https://github.com/rodjek/rspec-puppet.git' | ||
gem "puppetlabs_spec_helper" | ||
gem "metadata-json-lint" | ||
gem "listen", "3.0.6" | ||
gem "rspec-puppet-facts" | ||
gem 'rubocop', '0.33.0' | ||
gem 'simplecov', '>= 0.11.0' | ||
gem 'simplecov-console' | ||
|
||
gem "puppet-lint-absolute_classname-check" | ||
gem "puppet-lint-leading_zero-check" | ||
gem "puppet-lint-trailing_comma-check" | ||
gem "puppet-lint-version_comparison-check" | ||
gem "puppet-lint-classes_and_types_beginning_with_digits-check" | ||
gem "puppet-lint-unquoted_string-check" | ||
gem 'puppet-lint-resource_reference_syntax' | ||
end | ||
|
||
group :development do | ||
gem "travis" | ||
gem "travis-lint" | ||
gem "puppet-blacksmith" | ||
gem "guard-rake" | ||
end | ||
|
||
group :system_tests do | ||
gem "beaker" | ||
gem "beaker-rspec" | ||
gem 'beaker', '2.43.0' | ||
gem 'beaker-rspec', '5.3.0' | ||
gem "beaker-puppet_install_helper" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
HOSTS: | ||
centos-6-x64: | ||
platform: el-6-x86_64 | ||
hypervisor : docker | ||
image: centos:6 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_preserve_image: true | ||
CONFIG: | ||
type: foss | ||
log_level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
HOSTS: | ||
centos-7-x64: | ||
platform: el-7-x86_64 | ||
hypervisor : docker | ||
image: centos:7 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_preserve_image: true | ||
CONFIG: | ||
type: foss | ||
log_level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
HOSTS: | ||
ubuntu-12-04: | ||
platform: ubuntu-12.04-amd64 | ||
image: ubuntu:12.04 | ||
hypervisor: docker | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'apt-get install -y net-tools wget curl' | ||
- 'locale-gen en_US.UTF-8' | ||
docker_preserve_image: true | ||
CONFIG: | ||
type: foss | ||
log_level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
HOSTS: | ||
ubuntu-14-04: | ||
platform: ubuntu-14.04-amd64 | ||
image: ubuntu:14.04 | ||
hypervisor: docker | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- 'apt-get install -y net-tools wget curl' | ||
- 'locale-gen en_US.UTF-8' | ||
docker_preserve_image: true | ||
CONFIG: | ||
type: foss | ||
log_level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters