Skip to content

Commit

Permalink
Change test db config
Browse files Browse the repository at this point in the history
  • Loading branch information
kipcole9 committed Mar 4, 2024
1 parent 641f841 commit 058549b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 19 deletions.
8 changes: 0 additions & 8 deletions config/test.ci.exs

This file was deleted.

5 changes: 3 additions & 2 deletions config/test.exs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import Config

config :ex_cldr_trans, Cldr.Trans.Repo,
username: "kip",
database: "trans_test",
username: "postgres",
password: "postgres",
hostname: "localhost",
database: "postgres",
port: 5432,
pool: Ecto.Adapters.SQL.Sandbox,
log: false
Expand Down
10 changes: 1 addition & 9 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,7 @@ defmodule Cldr.Trans.Mixfile do
defp aliases do
[
test: [
"ecto.create --quiet",
"ecto.
migrate --quiet",
"test"
],

test_local: [
"ecto.drop --quiet",
"ecto.create --quiet",
# "ecto.create --quiet",
"ecto.migrate --quiet",
"test"
]
Expand Down

0 comments on commit 058549b

Please sign in to comment.