forked from AkkomaGang/akkoma
Tests: Don't run federated tests by default
This commit is contained in:
parent
f01881e82a
commit
717d246491
2 changed files with 7 additions and 4 deletions
|
@ -4,11 +4,15 @@
|
||||||
|
|
||||||
defmodule Pleroma.Integration.FederationTest do
|
defmodule Pleroma.Integration.FederationTest do
|
||||||
use Pleroma.DataCase
|
use Pleroma.DataCase
|
||||||
|
@moduletag :federated
|
||||||
import Pleroma.Cluster
|
import Pleroma.Cluster
|
||||||
|
|
||||||
@federated1 :"federated1@127.0.0.1"
|
setup_all do
|
||||||
|
Pleroma.Cluster.spawn_default_cluster()
|
||||||
|
:ok
|
||||||
|
end
|
||||||
|
|
||||||
|
@federated1 :"federated1@127.0.0.1"
|
||||||
describe "federated cluster primitives" do
|
describe "federated cluster primitives" do
|
||||||
test "within/2 captures local bindings and executes block on remote node" do
|
test "within/2 captures local bindings and executes block on remote node" do
|
||||||
captured_binding = :captured
|
captured_binding = :captured
|
||||||
|
|
|
@ -2,8 +2,7 @@
|
||||||
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
||||||
# SPDX-License-Identifier: AGPL-3.0-only
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
os_exclude = if :os.type() == {:unix, :darwin}, do: [skip_on_mac: true], else: []
|
ExUnit.start(exclude: [:federated])
|
||||||
ExUnit.start(exclude: os_exclude)
|
|
||||||
Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, :manual)
|
Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, :manual)
|
||||||
Mox.defmock(Pleroma.ReverseProxy.ClientMock, for: Pleroma.ReverseProxy.Client)
|
Mox.defmock(Pleroma.ReverseProxy.ClientMock, for: Pleroma.ReverseProxy.Client)
|
||||||
{:ok, _} = Application.ensure_all_started(:ex_machina)
|
{:ok, _} = Application.ensure_all_started(:ex_machina)
|
||||||
|
|
Loading…
Reference in a new issue