From 2c2a4d9b41cb7952f40e72bb5a5ad8c86b4a97d4 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Sun, 19 May 2019 12:16:40 -0700 Subject: [PATCH] Try setting minimum required RAM to 768M 512MB is too little for installing jupyterlab extensions :'( --- .circleci/integration-test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/integration-test.py b/.circleci/integration-test.py index 465d659..f55bf1d 100755 --- a/.circleci/integration-test.py +++ b/.circleci/integration-test.py @@ -29,7 +29,7 @@ def run_systemd_image(image_name, container_name): '--mount', 'type=bind,source=/sys/fs/cgroup,target=/sys/fs/cgroup', '--detach', '--name', container_name, - '--memory', '512M', # This is the minimum VM size we support + '--memory', '768M', # This is the minimum VM size we support image_name ])