We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f927ae3 + 29cd656 commit 76255dfCopy full SHA for 76255df
test/runtests.jl
@@ -11,7 +11,13 @@ using Test
11
include("download_artifacts.jl")
12
13
#! format: off
14
-@safetestset "Aqua" begin @time include("aqua.jl") end
+
15
+# Skip Aqua tests due to precompilation failures in old versions of SciMLBase
16
+import SciMLBase
17
+if pkgversion(SciMLBase) > v"2.12.1"
18
+ @safetestset "Aqua" begin @time include("aqua.jl") end
19
+end
20
21
@safetestset "Dependencies" begin @time include("dependencies.jl") end
22
@safetestset "Callbacks" begin @time include("callbacks.jl") end
23
@safetestset "Utilities" begin @time include("utilities.jl") end
0 commit comments