diff options
author | Lain Soykaf <lain@lain.com> | 2023-12-12 14:09:22 +0400 |
---|---|---|
committer | Lain Soykaf <lain@lain.com> | 2023-12-12 14:09:22 +0400 |
commit | b13820dcd078c78cc89974ff0d06cff1ed5c99dc (patch) | |
tree | 733f993e47495e22260ae247f61435edc35101ae /test/test_helper.exs | |
parent | 190120fd7948751fc74eea3a65de19d5b7ed2753 (diff) | |
download | pleroma-b13820dcd078c78cc89974ff0d06cff1ed5c99dc.tar.gz pleroma-b13820dcd078c78cc89974ff0d06cff1ed5c99dc.zip |
Tests: Remove `skip_on_mac` tag
Diffstat (limited to 'test/test_helper.exs')
-rw-r--r-- | test/test_helper.exs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_helper.exs b/test/test_helper.exs index b7b476bdc..27b777d5f 100644 --- a/test/test_helper.exs +++ b/test/test_helper.exs @@ -4,8 +4,7 @@ Code.put_compiler_option(:warnings_as_errors, true) -os_exclude = if :os.type() == {:unix, :darwin}, do: [skip_on_mac: true], else: [] -ExUnit.start(exclude: [:federated, :erratic] ++ os_exclude) +ExUnit.start(exclude: [:federated, :erratic]) Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, :manual) |