From 04f9211eae291625232e5fc8cf283182fcf9c283 Mon Sep 17 00:00:00 2001 From: Emiel Date: Wed, 11 Sep 2024 18:17:41 +0200 Subject: [PATCH] Fixed dialyzer warnings in test env VI --- core/.dialyzer_ignore.exs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/.dialyzer_ignore.exs b/core/.dialyzer_ignore.exs index b0b229680..735ef86e0 100644 --- a/core/.dialyzer_ignore.exs +++ b/core/.dialyzer_ignore.exs @@ -1,5 +1,7 @@ [ # https://github.com/phoenixframework/phoenix/issues/5437, fixed in Phoenix 1.7.3 or higher {"systems/benchmark/export_controller.ex", :no_return}, - {"systems/benchmark/export_controller.ex", :call} + {"systems/benchmark/export_controller.ex", :call}, + # https://elixirforum.com/t/dialyzer-listed-not-implemented-protocols-as-unknown-functions/2099/12 + ~r/.*:unknown_function Function .*__impl__\/1 does not exist.*/ ]