From 32924272a41b1be547dd3fe0b805a1d21dfe4b3f Mon Sep 17 00:00:00 2001 From: Matthew Roeschke Date: Thu, 23 Dec 2021 21:31:40 -0800 Subject: [PATCH] CLN: Remove unused db setup_env.sh commands --- ci/setup_env.sh | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/ci/setup_env.sh b/ci/setup_env.sh index 6d466072067a6..d51ff98b241a6 100755 --- a/ci/setup_env.sh +++ b/ci/setup_env.sh @@ -87,11 +87,6 @@ echo "w/o removing anything else" conda remove pandas -y --force || true pip uninstall -y pandas || true -echo -echo "remove postgres if has been installed with conda" -echo "we use the one from the CI" -conda remove postgresql -y --force || true - echo echo "remove qt" echo "causes problems with the clipboard, we use xsel for that" @@ -117,13 +112,4 @@ echo echo "conda list" conda list -# Install DB for Linux - -if [[ -n ${SQL:0} ]]; 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 Travis builds or Azure Pipelines" -fi echo "done"