64e65750cd
- gitignore to avoid bad files - git review to enable git review/gerrit integration - Vagrantfile like the other repos, but not useful (yet!) - dummy inventory file - setup.* files because docs use pbr - requirements files - tox.ini for test launcher to match openstack standards - scaffolded docs and release notes for gates to pass Change-Id: Iaf78c8fd3c2138e1d7d4384fb83c90cb7ddd6d10
9 lines
196 B
Ruby
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 |