diff options
author | Lain Soykaf <lain@lain.com> | 2023-01-03 17:01:56 -0500 |
---|---|---|
committer | Lain Soykaf <lain@lain.com> | 2023-01-03 17:01:56 -0500 |
commit | 2eec3f82072cc48443d10d52a48742924469cee1 (patch) | |
tree | 3b4ec19452999dda5bce29d1e576b0f3d067d11b | |
parent | b3a1cfaa7a70315e2b295aac78c1404ab84410bf (diff) | |
download | pleroma-2eec3f82072cc48443d10d52a48742924469cee1.tar.gz pleroma-2eec3f82072cc48443d10d52a48742924469cee1.zip |
B TestHelper: Remove warnings-as-errors
It's already set in mix.exs
-rw-r--r-- | test/test_helper.exs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/test_helper.exs b/test/test_helper.exs index 046517b28..60a61484f 100644 --- a/test/test_helper.exs +++ b/test/test_helper.exs @@ -1,7 +1,6 @@ # Pleroma: A lightweight social networking server # 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) |