From e68fec274c712ca96f9d06e4a6e23e5b578c6071 Mon Sep 17 00:00:00 2001 From: Peter Allen Webb Date: Thu, 10 Oct 2024 13:56:13 -0400 Subject: [PATCH] Update config, remove extra profiles file. --- .circleci/config.yml | 10 +++++----- profiles.yml | 12 ------------ 2 files changed, 5 insertions(+), 17 deletions(-) delete mode 100644 profiles.yml diff --git a/.circleci/config.yml b/.circleci/config.yml index 950a6cfd..2a4f5dff 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -41,11 +41,11 @@ jobs: - run: name: "Run Tests - Postgres" 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 + POSTGRES_PASS: '' + POSTGRES_PORT: 5432 + POSTGRES_DBNAME: circle_test command: | . dbt_venv/bin/activate cd integration_tests diff --git a/profiles.yml b/profiles.yml deleted file mode 100644 index 11e0a5f2..00000000 --- a/profiles.yml +++ /dev/null @@ -1,12 +0,0 @@ -integration_tests: - target: postgres - outputs: - postgres: - type: "postgres" - host: "{{ env_var('POSTGRES_HOST') }}" - user: "{{ env_var('POSTGRES_USER') }}" - pass: "{{ env_var('DBT_ENV_SECRET_POSTGRES_PASS') }}" - port: "{{ env_var('POSTGRES_PORT') | as_number }}" - dbname: "{{ env_var('POSTGRES_DATABASE') }}" - schema: "{{ env_var('POSTGRES_SCHEMA') }}" - threads: 5