Fix bash syntax error in test-wheels.sh (#6290)

This commit is contained in:
Edward Oakes
2019-11-26 13:15:54 -06:00
committed by GitHub
parent ffb9c0ecae
commit 141d667cee
+2 -2
View File
@@ -104,11 +104,11 @@ elif [[ "$platform" == "macosx" ]]; then
INSTALLED_RAY_DIRECTORY=$(dirname "$($PYTHON_EXE -u -c "import ray; print(ray.__file__)" | tail -n1)")
# $PYTHON_EXE -m pytest -v "$INSTALLED_RAY_DIRECTORY/$TEST_SCRIPT"
if (( $(echo "$PY_MM >= 3.0" | bc) )); then
# if (( $(echo "$PY_MM >= 3.0" | bc) )); then
# Run the UI test to make sure that the packaged UI works.
# $PIP_CMD install -q aiohttp google grpcio psutil requests setproctitle
# $PYTHON_EXE -m pytest -v "$INSTALLED_RAY_DIRECTORY/$UI_TEST_SCRIPT"
fi
# fi
done
else
echo "Unrecognized environment."