Travis Truman 3c394914c8 Remove apt update from Vagrantfile
Its now done in run_tests.sh which is run by the
Vagrant provisioner

Change-Id: Idebe990bb57ddbb346e4263bf6296af5edbe6d0e
2016-08-25 09:33:45 -04: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