Merge remote-tracking branch 'upstream/develop' into feature/incoming-remote-unfollow
[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.Upload, 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 :comeonin, :pbkdf2_rounds, 1
25
26 config :pleroma, :websub, Pleroma.Web.WebsubMock
27 config :pleroma, :ostatus, Pleroma.Web.OStatusMock
28 config :pleroma, :httpoison, HTTPoisonMock
29
30 try do
31 import_config "test.secret.exs"
32 rescue
33 _ ->
34 IO.puts(
35 "You may want to create test.secret.exs to declare custom database connection parameters."
36 )
37 end