Files
openstack-ansible-os_designate/Vagrantfile
Cuong Nguyen 2a569374b9 Install python2 for Vagrant
As vagrant using xenial so no python2 installed, hence test script will
fail. This installs python2 before executing the tests

Change-Id: I0dbfae47b0ef057a255952f2f68531da0a184a5d
2017-02-06 09:12:40 +07:00

16 lines
323 B
Ruby

Vagrant.configure(2) do |config|
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
end
config.vm.define "ubuntu1604" do |xenial|
xenial.vm.box = "ubuntu/xenial64"
xenial.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
./run_tests.sh
SHELL
end
end