From 8f4c091d18f7da161131239cf62775fc0880f0dc Mon Sep 17 00:00:00 2001 From: hyrodium Date: Sat, 25 Nov 2023 12:32:42 +0900 Subject: [PATCH] avoid tests on unbound_args --- test/runtests.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 4777001..9c938de 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -3,7 +3,9 @@ using Quaternions using Aqua using RealDot -Aqua.test_all(Quaternions) +# Avoid tests on unbound_args. +# https://github.com/JuliaGeometry/Quaternions.jl/pull/132#discussion_r1383817950 +Aqua.test_all(Quaternions, unbound_args=false) include("helpers.jl") include("Quaternion.jl")