2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2019-09-18 21:20:54 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:11:29 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-07-22 14:17:18 +00:00
|
|
|
ExUnit.start(exclude: [:federated])
|
2017-03-17 16:09:58 +00:00
|
|
|
Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, :manual)
|
2019-07-09 16:54:13 +00:00
|
|
|
Mox.defmock(Pleroma.ReverseProxy.ClientMock, for: Pleroma.ReverseProxy.Client)
|
2017-04-13 13:49:24 +00:00
|
|
|
{:ok, _} = Application.ensure_all_started(:ex_machina)
|
2019-09-18 20:34:13 +00:00
|
|
|
|
|
|
|
ExUnit.after_suite(fn _results ->
|
|
|
|
uploads = Pleroma.Config.get([Pleroma.Uploaders.Local, :uploads], "test/uploads")
|
|
|
|
File.rm_rf!(uploads)
|
|
|
|
end)
|