2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-07-22 19:54:22 +00:00
|
|
|
os_exclude = if :os.type() == {:unix, :darwin}, do: [skip_on_mac: true], else: []
|
|
|
|
ExUnit.start(exclude: os_exclude)
|
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)
|