cc81926655
CONTRIBUTING.rst updated to include instructions on how to use the Vagrantfile for running tests. Change-Id: I27725e6e9187df012f548849d2e1c0d37d600e23
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 |