From 673b3587073089c312506223a4d6295f3f2120fe Mon Sep 17 00:00:00 2001 From: Francois Lannoy Date: Mon, 2 Nov 2020 15:43:03 +0100 Subject: [PATCH] added pwd --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 06a0c3c..fb6a7c0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -55,8 +55,8 @@ jobs: - image: circleci/postgres:alpine environment: PG_USER: circleci-demo-go - PG_DB: circle_test - + PG_DB: circle_test + PG_PWD: toto steps: - checkout - restore_cache: @@ -76,7 +76,7 @@ jobs: - run: command: yarn test:e2e environment: - DATABASE_URL: postgres://${PG_USER}@localhost:5432/${PG_DB} + DATABASE_URL: postgres://${PG_USER}:${PG_PWD}@localhost:5432/${PG_DB} JWT_SECRET: yeet API_PORT: 3000 API_HOST: localhost