From 09e8495d6084554aac7d3711ec6842e87fa85c4e Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Mon, 26 Aug 2024 14:46:51 -0500 Subject: [PATCH] rename postgres vars for circleCI --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9b3cf783..d5421d3f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,11 +10,11 @@ jobs: environment: POSTGRES_USER: root environment: - POSTGRES_TEST_HOST: localhost - POSTGRES_TEST_USER: root - POSTGRES_TEST_PASS: '' - POSTGRES_TEST_PORT: 5432 - POSTGRES_TEST_DBNAME: circle_test + POSTGRES_HOST: localhost + POSTGRES_USER: root + DBT_ENV_SECRET_POSTGRES_PASS: '' + POSTGRES_PORT: 5432 + POSTGRES_DBNAME: circle_test steps: - checkout