From cd08c657b17a45f28383074070dc836fd22c9948 Mon Sep 17 00:00:00 2001 From: Luna Mendes Date: Tue, 13 Nov 2018 04:28:50 -0300 Subject: [PATCH] .gitlab-ci.yml: use postgres hostname on psql --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 13682a1..b593bee 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,7 +19,7 @@ tests: script: - ls - cp config.ci.py config.py - - psql -U postgres -f schema.sql + - psql -h postgres -U postgres -f schema.sql - pipenv run ./manage.py migrate - pipenv run ./manage.py setup_tests - tox