Travis Truman a04ca292a0 Adding Vagrantfile for local testing
Running `vagrant up` will emulate the gate tests

Change-Id: I3075e778939a70d3657de2f1ba512ca5dbf79a28
2016-08-14 09:38:35 +00:00

13 lines
278 B
Ruby

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