openstack-ansible-os_swift/Vagrantfile
Travis Truman cc81926655 Adding Vagrantfile for local developer testing
CONTRIBUTING.rst updated to include instructions on
how to use the Vagrantfile for running tests.

Change-Id: I27725e6e9187df012f548849d2e1c0d37d600e23
2016-03-02 15:43:59 -05: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