Adding Vagrantfile for local developer testing
This Vagrantfile attempts to replicate the gate check testing to the extent possible to allow developers to run all tests locally in a Vagrant environment prior to submitting changes for review. Change-Id: I7c956248558c73cc6275ae45768999f78bd43d1b
This commit is contained in:
parent
e9c5b96a5e
commit
bc8cb8f307
3
.gitignore
vendored
3
.gitignore
vendored
@ -60,3 +60,6 @@ releasenotes/build
|
||||
|
||||
# Test temp files
|
||||
tests/plugins
|
||||
|
||||
# Vagrant testing artifacts
|
||||
.vagrant
|
||||
|
9
Vagrantfile
vendored
Normal file
9
Vagrantfile
vendored
Normal 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
0
run_tests.sh
Normal file → Executable file
Loading…
Reference in New Issue
Block a user