From 131db4a360471a8d073bcf12a4161e67c3289567 Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Tue, 24 Oct 2023 14:45:19 -0700 Subject: [PATCH] Ignore errors when activating the conda environment in test_python.sh --- ci/test_python.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/test_python.sh b/ci/test_python.sh index d8c1fdbce..d3b3bdfd8 100755 --- a/ci/test_python.sh +++ b/ci/test_python.sh @@ -11,7 +11,9 @@ rapids-dependency-file-generator \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee env.yaml rapids-mamba-retry env create --force -f env.yaml -n test +set +u conda activate test +set -u rapids-print-env