Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
463B

  1. # Pleroma: A lightweight social networking server
  2. # Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
  3. # SPDX-License-Identifier: AGPL-3.0-only
  4. os_exclude = if :os.type() == {:unix, :darwin}, do: [skip_on_mac: true], else: []
  5. ExUnit.start(exclude: os_exclude)
  6. Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, :manual)
  7. Mox.defmock(Pleroma.ReverseProxy.ClientMock, for: Pleroma.ReverseProxy.Client)
  8. {:ok, _} = Application.ensure_all_started(:ex_machina)