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
This commit is contained in:
Travis Truman
2016-04-21 13:54:22 -04:00
parent 88deb10171
commit 23f436b4d9
3 changed files with 12 additions and 0 deletions

3
.gitignore vendored
View File

@@ -60,3 +60,6 @@ releasenotes/build
# Files created by releasenotes build
releasenotes/build
# Vagrant testing artifacts
.vagrant

9
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,9 @@
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

0
run_tests.sh Normal file → Executable file
View File