Skip to content

Commit

Permalink
chore: update test postgres configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
btkostner authored and doomspork committed Jan 18, 2024
1 parent ae31578 commit 6aab2c8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions config/test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ import Config
config :ex_machina, preserve_dates: true

config :ex_machina, ExMachina.TestRepo,
hostname: "localhost",
database: "ex_machina_test",
pool: Ecto.Adapters.SQL.Sandbox,
username: "postgres"
hostname: "localhost",
port: "5432"
username: "postgres",
password: "postgres",
database: "ex_machina_test"

config :logger, level: :warning

0 comments on commit 6aab2c8

Please sign in to comment.