From ae3ae5078f42dfed6aba95c44a975280dcce03e7 Mon Sep 17 00:00:00 2001 From: Ricardo Aielo Date: Thu, 8 Aug 2019 19:11:52 -0700 Subject: [PATCH] Memory set to 2GB to run tests with no Errno::ENOMEM --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 3b8ea591f..41a80253b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -10,7 +10,7 @@ Vagrant.configure("2") do |config| ["vmware_fusion", "vmware_workstation", "virtualbox"].each do |provider| config.vm.provider provider do |v, override| - v.memory = "1024" + v.memory = "2048" end end