commit: 923803a5332f97a7ad4eaa1d77e38b3a7e6e2367
parent cf0aa1238ccd137219253d76355f2dc0f89679ac
Author: Lain Soykaf <lain@lain.com>
Date: Tue, 19 Mar 2024 10:34:37 +0400
Tests: Explicitly set db pool size and max cases to the same value.
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/config/test.exs b/config/test.exs
@@ -49,7 +49,7 @@ config :pleroma, Pleroma.Repo,
hostname: System.get_env("DB_HOST") || "localhost",
port: System.get_env("DB_PORT") || "5432",
pool: Ecto.Adapters.SQL.Sandbox,
- pool_size: 50
+ pool_size: System.schedulers_online() * 2
config :pleroma, :dangerzone, override_repo_pool_size: true
diff --git a/test/test_helper.exs b/test/test_helper.exs
@@ -4,6 +4,8 @@
Code.put_compiler_option(:warnings_as_errors, true)
+ExUnit.configure(max_cases: System.schedulers_online() * 2)
+
ExUnit.start(exclude: [:federated, :erratic])
if match?({:unix, :darwin}, :os.type()) do