You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
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 :chirp, Chirp.Repo, |
|
username: "postgres", |
|
password: "7a5ff6dba25f438a89f4427f956000e0", |
|
hostname: "localhost", |
|
database: "chirp_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 :chirp, ChirpWeb.Endpoint, |
|
http: [ip: {127, 0, 0, 1}, port: 4002], |
|
secret_key_base: "9CEgcgXMtcBtdcMAGv08+nHuAg7SmImLzRTeMvqStzi5+Xn2wtfuVzbEq2dwDMob", |
|
server: false |
|
|
|
# In test we don't send emails. |
|
config :chirp, Chirp.Mailer, adapter: Swoosh.Adapters.Test |
|
|
|
# Disable swoosh api client as it is only required for production adapters. |
|
config :swoosh, :api_client, false |
|
|
|
# Print only warnings and errors during test |
|
config :logger, level: :warning |
|
|
|
# Initialize plugs at runtime for faster test compilation |
|
config :phoenix, :plug_init_mode, :runtime
|
|
|