From 753638f9b09eb865fc9e94124be9a1493004e011 Mon Sep 17 00:00:00 2001 From: Galimede Date: Mon, 2 Nov 2020 15:41:05 +0100 Subject: [PATCH] add pwd for postgres --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8d39a94..f3902bd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -35,6 +35,7 @@ jobs: environment: POSTGRES_USER: e2e POSTGRES_DB: psdb + POSTGRES_PASSWORD: password steps: - checkout - restore_cache: @@ -42,7 +43,7 @@ jobs: - run: command: yarn test:e2e environment: - DATABASE_URL: postgres://$POSTGRES_USER@localhost:5432/$POSTGRES_DB + DATABASE_URL: postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@localhost:5432/$POSTGRES_DB API_PORT: 3000 API_HOST: localhost API_PROTOCOL: http