From 33990cce264cb605ef346bd6e4ecb4968174c591 Mon Sep 17 00:00:00 2001 From: Michael Siegfried Date: Tue, 18 Aug 2020 15:08:29 -0700 Subject: [PATCH] Sets up PG password for test runs See https://github.com/docker-library/postgres/issues/681 for more details. --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8d040d5a..99576736 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,6 +10,7 @@ jobs: - image: circleci/postgres:12.4 environment: POSTGRES_USER: root + POSTGRES_PASSWORD: $POSTGRES_PASSWORD POSTGRES_DB: expiration_test steps: - checkout