memEx/config/test.exs

30 lines
972 B
Elixir
Raw Normal View History

2021-09-04 16:19:23 -04:00
import Config
2021-03-11 21:12:55 -05:00
# Configure your database
#
# The MIX_TEST_PARTITION environment variable can be used
# to provide built-in test partitioning in CI environment.
# Run `mix help test` for more information.
config :lokal, Lokal.Repo,
2022-01-22 14:54:19 -05:00
url:
System.get_env("TEST_DATABASE_URL") ||
"ecto://postgres:postgres@localhost/lokal_test#{System.get_env("MIX_TEST_PARTITION")}",
2022-01-22 13:01:36 -05:00
pool: Ecto.Adapters.SQL.Sandbox,
pool_size: 10
2021-03-11 21:12:55 -05:00
# We don't run a server during test. If one is required,
# you can enable the server option below.
config :lokal, LokalWeb.Endpoint,
2022-01-22 14:54:19 -05:00
http: [ip: {0, 0, 0, 0}, port: 4002],
2022-01-22 13:01:36 -05:00
secret_key_base: "T4DkRImgeMNCcPcTWBCZyKYp3KQ8yyPD33VT4wj6ogbP8fIGUsqmOTNX3clTMrLo",
2021-03-11 21:12:55 -05:00
server: false
2022-01-22 13:01:36 -05:00
# In test we don't send emails.
config :lokal, Lokal.Mailer, adapter: Swoosh.Adapters.Test
2021-03-11 21:12:55 -05:00
# Print only warnings and errors during test
config :logger, level: :warn
2022-01-22 13:01:36 -05:00
# Initialize plugs at runtime for faster test compilation
config :phoenix, :plug_init_mode, :runtime