From d8102774b694e0b3d04eb66be2fb184972723a53 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 5 Jun 2022 19:56:29 +0200 Subject: [PATCH] vagrant: increase VMCPUS and xdistn from 4 to 16 esp. the darwin64 box based tests take ages, let's see if they get faster with this. --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 1f47cc9f8..811bd50a5 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -3,8 +3,8 @@ # Automated creation of testing environments / binaries on misc. platforms -$cpus = Integer(ENV.fetch('VMCPUS', '4')) # create VMs with that many cpus -$xdistn = Integer(ENV.fetch('XDISTN', '4')) # dispatch tests to that many pytest workers +$cpus = Integer(ENV.fetch('VMCPUS', '16')) # create VMs with that many cpus +$xdistn = Integer(ENV.fetch('XDISTN', '16')) # dispatch tests to that many pytest workers $wmem = $xdistn * 256 # give the VM additional memory for workers [MB] def packages_debianoid(user)