From 46adb5750cc527a9c49a0c3f1b878f33920d68cd Mon Sep 17 00:00:00 2001 From: nuclearGoblin Date: Mon, 14 Aug 2023 15:04:26 -0500 Subject: [PATCH] Check ulimit in travis --- .travis.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3c9f869..82a59e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,11 +6,7 @@ install: - sudo apt-get update || true # We do this conditionally because it saves us some downloading if the # version is the same. - - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then - wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh; - else - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; - fi + - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r @@ -18,7 +14,8 @@ install: - conda update -q conda || true # Useful for debugging any issues with conda - conda info -a - + # Useful for debugging memory issues + - ulimit -a - free -m - conda env create -vv -n test-environment -f binder/environment.yml - source activate test-environment