diff --git a/ci/setup_env.sh b/ci/setup_env.sh index e2667558a63d7..8f73bb228e2bd 100755 --- a/ci/setup_env.sh +++ b/ci/setup_env.sh @@ -118,12 +118,12 @@ echo "conda list" conda list # Install DB for Linux -if [ ${TRAVIS_OS_NAME} == "linux" ]; then +if [ "${TRAVIS_OS_NAME}" == "linux" ]; then echo "installing dbs" mysql -e 'create database pandas_nosetest;' psql -c 'create database pandas_nosetest;' -U postgres else - echo "not using dbs on non-linux" + echo "not using dbs on non-linux Travis builds or Azure Pipelines" fi echo "done"