X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=config%2Ftest.exs;h=a5bf3a4d13f752316cbd76b45fbfb559116e8ddf;hb=4d2149a124001ab150489897810c21678d22aae2;hp=690c98e40e909b6b3ff4aaa8f85f655f9727c5df;hpb=3aa25b008d145bc7bfda907bca3b327753380728;p=akkoma diff --git a/config/test.exs b/config/test.exs index 690c98e40..a5bf3a4d1 100644 --- a/config/test.exs +++ b/config/test.exs @@ -1,4 +1,4 @@ -use Mix.Config +import Config # We don't run a server during test. If one is required, # you can enable the server option below. @@ -38,7 +38,7 @@ config :pleroma, :instance, external_user_synchronization: false, static_dir: "test/instance_static/" -config :pleroma, :activitypub, sign_object_fetches: false +config :pleroma, :activitypub, sign_object_fetches: false, follow_handshake_timeout: 0 # Configure your database config :pleroma, Pleroma.Repo, @@ -48,7 +48,8 @@ config :pleroma, Pleroma.Repo, database: "pleroma_test", hostname: System.get_env("DB_HOST") || "localhost", pool: Ecto.Adapters.SQL.Sandbox, - pool_size: 50 + pool_size: 50, + queue_target: 5000 config :pleroma, :dangerzone, override_repo_pool_size: true @@ -133,6 +134,10 @@ config :pleroma, :side_effects, ap_streamer: Pleroma.Web.ActivityPub.ActivityPubMock, logger: Pleroma.LoggerMock +# Reduce recompilation time +# https://dashbit.co/blog/speeding-up-re-compilation-of-elixir-projects +config :phoenix, :plug_init_mode, :runtime + if File.exists?("./config/test.secret.exs") do import_config "test.secret.exs" else