From 16e5ab7cc19fc3c42896a2dda1d2bf83346f9b91 Mon Sep 17 00:00:00 2001 From: Markus Hauru Date: Thu, 6 Jun 2024 17:18:36 +0100 Subject: [PATCH] Disable Aqua checking method ambiguities --- test/Aqua.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/Aqua.jl b/test/Aqua.jl index 41b96b659..0b536770b 100644 --- a/test/Aqua.jl +++ b/test/Aqua.jl @@ -3,6 +3,8 @@ module AquaTests using Aqua: Aqua using Turing -Aqua.test_all(Turing) +# TODO(mhauru) We skip testing for method ambiguities because it catches a lot of problems +# in dependencies. Would like to check it for just Turing.jl itself though. +Aqua.test_all(Turing; ambiguities=false) end