diff options
author | Lain Soykaf <lain@lain.com> | 2024-05-27 20:03:14 +0400 |
---|---|---|
committer | Lain Soykaf <lain@lain.com> | 2024-05-27 20:03:14 +0400 |
commit | f4c0a01f097ec9d6d61dff3abfcda616b23e01e6 (patch) | |
tree | e821106c60e3180005be5add7a18dbe569171a74 /test/test_helper.exs | |
parent | 197647a04e66c1af3ae691a4507612fdbee9c48c (diff) | |
parent | 7798fdc71121459f479e0729fefdac195b1dca7d (diff) | |
download | pleroma-f4c0a01f097ec9d6d61dff3abfcda616b23e01e6.tar.gz pleroma-f4c0a01f097ec9d6d61dff3abfcda616b23e01e6.zip |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into image-description-summary
Diffstat (limited to 'test/test_helper.exs')
-rw-r--r-- | test/test_helper.exs | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/test/test_helper.exs b/test/test_helper.exs index 7727cffbc..a117584ae 100644 --- a/test/test_helper.exs +++ b/test/test_helper.exs @@ -4,8 +4,15 @@ Code.put_compiler_option(:warnings_as_errors, true) -os_exclude = if :os.type() == {:unix, :darwin}, do: [skip_on_mac: true], else: [] -ExUnit.start(exclude: [:federated, :erratic] ++ os_exclude) +ExUnit.configure(max_cases: System.schedulers_online()) + +ExUnit.start(exclude: [:federated, :erratic]) + +if match?({:unix, :darwin}, :os.type()) do + excluded = ExUnit.configuration() |> Keyword.get(:exclude, []) + excluded = excluded ++ [:skip_darwin] + ExUnit.configure(exclude: excluded) +end Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, :manual) @@ -18,3 +25,16 @@ ExUnit.after_suite(fn _results -> uploads = Pleroma.Config.get([Pleroma.Uploaders.Local, :uploads], "test/uploads") File.rm_rf!(uploads) end) + +defmodule Pleroma.Test.StaticConfig do + @moduledoc """ + This module provides a Config that is completely static, built at startup time from the environment. It's safe to use in testing as it will not modify any state. + """ + + @behaviour Pleroma.Config.Getting + @config Application.get_all_env(:pleroma) + + def get(path, default \\ nil) do + get_in(@config, path) || default + end +end |