diff options
author | Lain Soykaf <lain@lain.com> | 2023-02-09 12:36:02 -0500 |
---|---|---|
committer | Lain Soykaf <lain@lain.com> | 2023-02-09 12:36:02 -0500 |
commit | 8583b3721d816805f926da667f361b8de235f941 (patch) | |
tree | 945606fd451545702ede7e21debce19e75d91049 /test/test_helper.exs | |
parent | e412363ff8fd34469ffa0ca4c3679af03e6507d6 (diff) | |
download | pleroma-8583b3721d816805f926da667f361b8de235f941.tar.gz pleroma-8583b3721d816805f926da667f361b8de235f941.zip |
B TestHelper, CI: Work with older elixir version.
Diffstat (limited to 'test/test_helper.exs')
-rw-r--r-- | test/test_helper.exs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_helper.exs b/test/test_helper.exs index 60a61484f..7727cffbc 100644 --- a/test/test_helper.exs +++ b/test/test_helper.exs @@ -2,6 +2,8 @@ # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/> # SPDX-License-Identifier: AGPL-3.0-only +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) |