From 8c53abe66d6b2151ddf2cf8afff578e1e3061280 Mon Sep 17 00:00:00 2001 From: MilesCranmer Date: Wed, 1 Jan 2025 23:48:29 +0000 Subject: [PATCH] test: fix Aqua stale deps test --- test/Aqua.jl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/Aqua.jl b/test/Aqua.jl index 47b932ee..8d512a43 100644 --- a/test/Aqua.jl +++ b/test/Aqua.jl @@ -2,5 +2,9 @@ # The unbound_args test fails on methods with signature like foo(::Type{Tuple{Vararg{V}}}) where V # Seems like a bug. import Aqua - Aqua.test_all(PythonCall, unbound_args = false) + Aqua.test_all( + PythonCall, + unbound_args = false, + stale_deps = (; ignore = [:REPL]) + ) end