cannery/config/test.exs

36 lines
1.1 KiB
Elixir
Raw Permalink Normal View History

2021-09-04 16:14:51 -04:00
import Config
2021-03-11 21:12:55 -05:00
# Only in tests, remove the complexity from the password hashing algorithm
config :bcrypt_elixir, :log_rounds, 1
# 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 :cannery, Cannery.Repo,
2022-01-21 20:36:25 -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 :cannery, CanneryWeb.Endpoint,
2022-01-22 17:21:13 -05:00
http: [ip: {0, 0, 0, 0}, port: 4002],
2022-01-21 20:36:25 -05:00
secret_key_base: "S3qq9QtUdsFtlYej+HTjAVN95uP5i5tf2sPYINWSQfCKJghFj2B1+wTAoljZyHOK",
2021-03-11 21:12:55 -05:00
server: false
2022-01-21 20:36:25 -05:00
# In test we don't send emails.
config :cannery, Cannery.Mailer, adapter: Swoosh.Adapters.Test
2023-02-04 21:51:09 -05:00
# Don't require invites for signups
config :cannery, Cannery.Accounts, registration: "public"
2021-03-11 21:12:55 -05:00
# Print only warnings and errors during test
2024-02-23 21:16:46 -05:00
config :logger, level: :warning
2022-01-21 20:36:25 -05:00
# Initialize plugs at runtime for faster test compilation
config :phoenix, :plug_init_mode, :runtime
2022-02-08 19:59:23 -05:00
# Disable Oban
config :cannery, Oban, queues: false, plugins: false