e597350158
Install python2 for Ubuntu 16.04 and CentOS 7 before executing test script. Change-Id: Ieb68eb09d2c57b1989a3c6145e216a87d95f1762
9 lines
178 B
Ruby
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
|