From 60b9f9bd0e29fa2534a57723e1a4bf1a600a9d30 Mon Sep 17 00:00:00 2001 From: Rafa de la Torre Date: Mon, 8 Aug 2016 18:23:27 +0200 Subject: [PATCH] Add a couple of lines to diagnose pg port issue --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 35df7ad..2f21906 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,13 +21,14 @@ before_install: - sudo apt-get -y --no-install-recommends install python-scikits-learn=0.14.1-3-cdb2 # Install postgres db and build deps + - dpkg -l | grep postgres # TODO: remove this line - sudo /etc/init.d/postgresql stop # stop travis default instance - sudo apt-get -y install postgresql-9.5 postgresql-server-dev-9.5 postgresql-plpython-9.5 postgresql-9.5-postgis-2.2 postgresql-9.5-postgis-scripts # configure it to accept local connections from postgres - echo -e "# TYPE DATABASE USER ADDRESS METHOD \nlocal all postgres trust\nlocal all all trust\nhost all all 127.0.0.1/32 trust" \ | sudo tee /etc/postgresql/9.5/main/pg_hba.conf - - sudo cat /etc/postgresql/9.5/main/postgresql.conf | grep ^port + - sudo cat /etc/postgresql/9.5/main/postgresql.conf | grep ^port # TODO: remove this line - sudo /etc/init.d/postgresql restart 9.5 script: