From 141d667cee21601ee5bf1665d9dfd4ccafc06f30 Mon Sep 17 00:00:00 2001 From: Edward Oakes Date: Tue, 26 Nov 2019 13:15:54 -0600 Subject: [PATCH] Fix bash syntax error in test-wheels.sh (#6290) --- ci/travis/test-wheels.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/travis/test-wheels.sh b/ci/travis/test-wheels.sh index c7a294722..e0a3bbdd7 100755 --- a/ci/travis/test-wheels.sh +++ b/ci/travis/test-wheels.sh @@ -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."