Files
openstack-ansible-openstack…/Vagrantfile
Travis Truman 23f436b4d9 Adding Vagrantfile for local developer testing
Running `vagrant up` will execute run_tests.sh
and perform doc build, lint and functional tests

Change-Id: I5816e83217239c2ca623e95c486b49546b8338db
2016-04-21 13:54:22 -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