Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

10 wiersze
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)