From 03ce9e5c78641588b9124d9a358eaa67c388c54a Mon Sep 17 00:00:00 2001 From: Abhinav Singh <73834077+abhinavsns@users.noreply.github.com> Date: Thu, 18 Jul 2024 11:57:36 +0200 Subject: [PATCH] Enabling aqua ambiguity testing for Turing We test ambiguities only for Turing and not its dependencies. --- test/Aqua.jl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/Aqua.jl b/test/Aqua.jl index 0b536770b2..b3ff8be4b3 100644 --- a/test/Aqua.jl +++ b/test/Aqua.jl @@ -3,8 +3,10 @@ module AquaTests using Aqua: Aqua using 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. +# We test ambiguities separately because it catches a lot of problems +# in dependencies but we test it for Turing. +Aqua.test_ambiguities([Turing]) Aqua.test_all(Turing; ambiguities=false) + end