e259a9c65bf52fa182ebdc51b03e97f23706d116
[akkoma] / config / test.exs
1 use Mix.Config
2
3 # We don't run a server during test. If one is required,
4 # you can enable the server option below.
5 config :pleroma, Pleroma.Web.Endpoint,
6 http: [port: 4001],
7 server: false
8
9 # Print only warnings and errors during test
10 config :logger, level: :warn
11
12 config :pleroma, Pleroma.Uploaders.Local, uploads: "test/uploads"
13
14 # Configure your database
15 config :pleroma, Pleroma.Repo,
16 adapter: Ecto.Adapters.Postgres,
17 username: "postgres",
18 password: "postgres",
19 database: "pleroma_test",
20 hostname: System.get_env("DB_HOST") || "localhost",
21 pool: Ecto.Adapters.SQL.Sandbox
22
23 # Reduce hash rounds for testing
24 config :pbkdf2_elixir, rounds: 1
25
26 config :pleroma, :websub, Pleroma.Web.WebsubMock
27 config :pleroma, :ostatus, Pleroma.Web.OStatusMock
28 config :pleroma, :httpoison, HTTPoisonMock
29 config :tesla, adapter: Tesla.Mock
30
31 try do
32 import_config "test.secret.exs"
33 rescue
34 _ ->
35 IO.puts(
36 "You may want to create test.secret.exs to declare custom database connection parameters."
37 )
38 end