mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
23bd38ad66
These changes are needed to run the test suite on ec2 using sudo.
29 lines
624 B
Ruby
29 lines
624 B
Ruby
# This file is only used for running the test suite with kitchen-salt.
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gem 'test-kitchen'
|
|
gem 'kitchen-salt', :git => 'https://github.com/saltstack/kitchen-salt.git'
|
|
gem 'kitchen-sync'
|
|
gem 'git'
|
|
|
|
group :docker do
|
|
gem 'kitchen-docker', :git => 'https://github.com/test-kitchen/kitchen-docker.git'
|
|
end
|
|
|
|
group :opennebula do
|
|
gem 'kitchen-opennebula', :git => 'https://github.com/gtmanfred/kitchen-opennebula.git'
|
|
gem 'xmlrpc'
|
|
end
|
|
|
|
group :windows do
|
|
gem 'vagrant-wrapper'
|
|
gem 'kitchen-vagrant'
|
|
gem 'winrm', '~>2.0'
|
|
gem 'winrm-fs', '~>1.0'
|
|
end
|
|
|
|
group :ec2 do
|
|
gem 'kitchen-ec2'
|
|
end
|