diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 00000000..54f0e352 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,12 @@ +Vagrant.configure(2) do |config| + config.vm.box = "ubuntu/trusty64" + config.vm.provider "virtualbox" do |v| + v.memory = 2048 + v.cpus = 2 + end + config.vm.provision "shell", inline: <<-SHELL + sudo su - + cd /vagrant + ./run_tests.sh + SHELL +end