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 57a93ac commit 877eb50Copy full SHA for 877eb50
.ci/scripts/test_backend_linux.sh
@@ -19,15 +19,15 @@ 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
+if [[ "$(uname)" == "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=""
+ #IS_MACOS=0
+ #CONDA_PREFIX=""
31
fi
32
33
export PYTHON_EXECUTABLE=python
0 commit comments