openstack-ansible-os_cloudk.../Vagrantfile
Cuong Nguyen e597350158 Install python2 for Ubuntu 16.04 and CentOS 7 in Vagrant
Install python2 for Ubuntu 16.04 and CentOS 7 before executing test
script.

Change-Id: Ieb68eb09d2c57b1989a3c6145e216a87d95f1762
2017-02-09 10:24:53 +07:00

9 lines
178 B
Ruby

Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
./run_tests.sh
SHELL
end