openstack-ansible-memcached.../Vagrantfile
Travis Truman ee6ff9a709 Adding Vagrantfile for developer testing
Running `vagrant up` will launch a Trusty box
and then run all of the gate checks

Change-Id: I55b763e51b24d3e2dd8f63e1039dbca5a9b9643f
2016-08-05 11:27:08 -04:00

9 lines
196 B
Ruby

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