From 45b659ed0258299bd4ab5b1905abfe9cc5e23ae3 Mon Sep 17 00:00:00 2001 From: Qingyu Qu <2283984853@qq.com> Date: Sun, 10 Nov 2024 19:47:15 +0800 Subject: [PATCH] Fix appropriate tests --- lib/BoundaryValueDiffEqFIRK/test/runtests.jl | 4 ++-- test/runtests.jl | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/lib/BoundaryValueDiffEqFIRK/test/runtests.jl b/lib/BoundaryValueDiffEqFIRK/test/runtests.jl index 0069694b..40e0707e 100644 --- a/lib/BoundaryValueDiffEqFIRK/test/runtests.jl +++ b/lib/BoundaryValueDiffEqFIRK/test/runtests.jl @@ -6,12 +6,12 @@ const GROUP = (get(ENV, "GROUP", "All")) if GROUP == "All" || GROUP == "EXPANDED" @time "FIRK Expanded solvers" begin - ReTestItems.runtests("/expanded/") + ReTestItems.runtests("expanded/") end end if GROUP == "All" || GROUP == "NESTED" @time "FIRK Nested solvers" begin - ReTestItems.runtests("/nested/") + ReTestItems.runtests("nested/") end end diff --git a/test/runtests.jl b/test/runtests.jl index e92300f9..662f98d5 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,7 +1,7 @@ using ReTestItems, BoundaryValueDiffEq, Hwloc, InteractiveUtils, Pkg @info sprint(InteractiveUtils.versioninfo) - +#= const GROUP = lowercase(get(ENV, "GROUP", "All")) const RETESTITEMS_NWORKERS = parse(Int, @@ -16,3 +16,8 @@ const RETESTITEMS_NWORKER_THREADS = parse(Int, ReTestItems.runtests( BoundaryValueDiffEq; tags = (GROUP == "all" ? nothing : [Symbol(GROUP)]), nworkers = RETESTITEMS_NWORKERS, nworker_threads = RETESTITEMS_NWORKER_THREADS) +=# +@time "Test package" begin + ReTestItems.runtests("misc/") + ReTestItems.runtests("wrappers/") +end