60bac9e630
Its now done in run_tests.sh which is run by the Vagrant provisioner Change-Id: I8a6588c74b010b682e6d187a07a75cbf91e8c900
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
|