diff options
author | Mark Felder <feld@feld.me> | 2024-01-20 19:10:57 -0500 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2024-01-20 19:10:57 -0500 |
commit | 23301003717a5e154f54c14a5b8cb10ea2033e1a (patch) | |
tree | 9f2614015ca5ae21fd2e4508bd40b17b53b6cc1d /config/test.exs | |
parent | 17877f612e6c655290c5dc8bdb82f4b34e8b5b9f (diff) | |
download | pleroma-23301003717a5e154f54c14a5b8cb10ea2033e1a.tar.gz pleroma-23301003717a5e154f54c14a5b8cb10ea2033e1a.zip |
Use config to control starting all HTTP pools in test env
Diffstat (limited to 'config/test.exs')
-rw-r--r-- | config/test.exs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/test.exs b/config/test.exs index afdb71d1d..28d0364c6 100644 --- a/config/test.exs +++ b/config/test.exs @@ -167,7 +167,8 @@ config :pleroma, Pleroma.Application, internal_fetch: false, load_custom_modules: false, max_restarts: 100, - streamer_registry: false + streamer_registry: false, + test_http_pools: true if File.exists?("./config/test.secret.exs") do import_config "test.secret.exs" |