pleroma/test/test_helper.exs

19 lines
686 B
Elixir
Raw Normal View History

2018-12-23 14:11:29 -06:00
# Pleroma: A lightweight social networking server
2022-02-26 00:11:42 -06:00
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
2018-12-23 14:11:29 -06:00
# SPDX-License-Identifier: AGPL-3.0-only
2019-11-26 14:24:34 -06:00
os_exclude = if :os.type() == {:unix, :darwin}, do: [skip_on_mac: true], else: []
2021-12-21 22:04:15 -06:00
ExUnit.start(exclude: [:federated, :erratic] ++ os_exclude)
2019-11-26 14:24:34 -06:00
2017-03-17 11:09:58 -05:00
Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, :manual)
2020-03-06 11:23:58 -06:00
2019-07-09 11:54:13 -05:00
Mox.defmock(Pleroma.ReverseProxy.ClientMock, for: Pleroma.ReverseProxy.Client)
2020-03-06 11:23:58 -06:00
Mox.defmock(Pleroma.GunMock, for: Pleroma.Gun)
2017-04-13 08:49:24 -05:00
{:ok, _} = Application.ensure_all_started(:ex_machina)
ExUnit.after_suite(fn _results ->
uploads = Pleroma.Config.get([Pleroma.Uploaders.Local, :uploads], "test/uploads")
File.rm_rf!(uploads)
end)