Skip to content

Commit

Permalink
Remove unittests dependency on envvars
Browse files Browse the repository at this point in the history
  • Loading branch information
tatiana committed Sep 26, 2023
1 parent b502299 commit 4a61950
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/sample/profiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ default:
outputs:
dev:
type: postgres
host: "{{ env_var('POSTGRES_HOST') }}"
user: "{{ env_var('POSTGRES_USER') }}"
password: "{{ env_var('POSTGRES_PASSWORD') }}"
port: "{{ env_var('POSTGRES_PORT') | int }}"
dbname: "{{ env_var('POSTGRES_DB') }}"
schema: "{{ env_var('POSTGRES_SCHEMA') }}"
host: "localhost"
user: "postgres"
password: "postgres"
port: 5432
dbname: "postgres"
schema: "public"
threads: 4

0 comments on commit 4a61950

Please sign in to comment.