We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6e3dc5 commit 57a93acCopy full SHA for 57a93ac
.ci/scripts/test_backend_linux.sh
@@ -19,6 +19,16 @@ eval "$(conda shell.bash hook)"
19
CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]")
20
conda activate "${CONDA_ENV}"
21
22
+if [[ "TEST" == "Darwin" ]]; then
23
+ IS_MACOS=1
24
+ bash .ci/scripts/setup-conda.sh
25
+ eval "$(conda shell.bash hook)"
26
+ ${CONDA_RUN} --no-capture-output pip install awscli==1.37.21
27
+ CONDA_PREFIX="${CONDA_RUN} --no-capture-output"
28
+else
29
+ IS_MACOS=0
30
+ CONDA_PREFIX=""
31
+fi
32
33
export PYTHON_EXECUTABLE=python
34
0 commit comments