This repository has been archived on 2022-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
dedibox_prices/config/test.exs

31 lines
1.0 KiB
Elixir

import Config
# 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 :dedibox_prices, DediboxPrices.Repo,
username: "postgres",
password: "postgres",
hostname: "localhost",
database: "dedibox_prices_test#{System.get_env("MIX_TEST_PARTITION")}",
pool: Ecto.Adapters.SQL.Sandbox,
pool_size: 10
# We don't run a server during test. If one is required,
# you can enable the server option below.
config :dedibox_prices, DediboxPricesWeb.Endpoint,
http: [ip: {127, 0, 0, 1}, port: 4002],
secret_key_base: "7rCc/jY1p7y7TE91YFJ5KhozKY+9zYykgsYElahPh886mekPmqi+qAHsOXidpIys",
server: false
# In test we don't send emails.
config :dedibox_prices, DediboxPrices.Mailer, adapter: Swoosh.Adapters.Test
# Print only warnings and errors during test
config :logger, level: :warn
# Initialize plugs at runtime for faster test compilation
config :phoenix, :plug_init_mode, :runtime