From 63abf26d420716d461c72f4b2318a5abc122932a Mon Sep 17 00:00:00 2001 From: pogudingleb Date: Fri, 19 Jan 2024 21:26:39 +0100 Subject: [PATCH] lazy include --- test/runtests.jl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index c7b9b322..970a2e37 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -97,5 +97,9 @@ end @includetests ARGS include("RationalFunctionFields/RationalFunctionField.jl") include("RationalFunctionFields/normalforms.jl") - include("extensions//modelingtoolkit.jl") + @static if VERSION >= v"1.10.0" + if GROUP == "All" || GROUP == "ModelingToolkitExt" + include("extensions//modelingtoolkit.jl") + end + end end