Skip to content

Commit 7c46822

Browse files
committed
test: wrap in a global testset
1 parent 4590181 commit 7c46822

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
using TestItemRunner, InteractiveUtils
1+
using TestItemRunner, InteractiveUtils, Test
22

33
@info sprint(InteractiveUtils.versioninfo)
44

5-
@run_package_tests
5+
@tesetset "BracketingNonlinearSolve.jl" begin
6+
@run_package_tests
7+
end
Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using TestItemRunner, InteractiveUtils, Pkg
1+
using TestItemRunner, InteractiveUtils, Pkg, Test
22

33
@info sprint(InteractiveUtils.versioninfo)
44

@@ -7,8 +7,10 @@ const GROUP = lowercase(get(ENV, "GROUP", "All"))
77
(GROUP == "all" || GROUP == "cuda") && Pkg.add(["CUDA"])
88
(GROUP == "all" || GROUP == "adjoint") && Pkg.add(["SciMLSensitivity"])
99

10-
if GROUP == "all"
11-
@run_package_tests
12-
else
13-
@run_package_tests filter = ti -> (Symbol(GROUP) in ti.tags)
10+
@testset "SimpleNonlinearSolve.jl" begin
11+
if GROUP == "all"
12+
@run_package_tests
13+
else
14+
@run_package_tests filter = ti -> (Symbol(GROUP) in ti.tags)
15+
end
1416
end

0 commit comments

Comments
 (0)