Skip to content

Commit

Permalink
Fix appropriate tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikQQY committed Nov 10, 2024
1 parent b8fb77d commit 45b659e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/BoundaryValueDiffEqFIRK/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
7 changes: 6 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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

0 comments on commit 45b659e

Please sign in to comment.