From d7c2e3a1eb78315030749575ccc580c16e9c6eca Mon Sep 17 00:00:00 2001 From: Francois Lannoy Date: Tue, 5 Jan 2021 19:44:16 +0100 Subject: [PATCH] :construction_worker: changed postgres port --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c40950b..aa5fd95 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,7 +28,7 @@ jobs: docker: - image: python:3.8-buster environment: - DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/psdb + DATABASE_URL: postgresql://myUsr:somePwd@localhost:5433/psdb - image: circleci/postgres:9.6.2-alpine environment: POSTGRES_USER: $POSTGRES_USER @@ -40,9 +40,9 @@ jobs: key: deps-{{ checksum "requirements/dev.txt"}}-{{ .Environment.CACHE_VERSION }} - run: name: postgres - command : dockerize -wait tcp://localhost:5432 -timeout 1m + command : dockerize -wait tcp://localhost:5433 -timeout 1m - run: - name : test + name : testing command: | . venv/bin/activate flask db upgrade