Skip to content

Commit

Permalink
Merge #193
Browse files Browse the repository at this point in the history
193: Use SafeTestsets for testing r=juliasloan25 a=juliasloan25



Co-authored-by: Julia Sloan <[email protected]>
  • Loading branch information
bors[bot] and juliasloan25 authored Dec 14, 2022
2 parents c5e8fe1 + dbbc23e commit 7844e6e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
1 change: 1 addition & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195"
NCDatasets = "85f8d34a-cbdd-5861-8df4-14fed0d494ab"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
18 changes: 14 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
include("CoupledSimulations/clock.jl")
include("CouplerState/cplstate_interface.jl")
using SafeTestsets

@safetestset "Clock tests" begin
include("CoupledSimulations/clock.jl")
end
@safetestset "CouplerState tests" begin
include("CouplerState/cplstate_interface.jl")
end
@safetestset "Regridder tests" begin
include("regridder_tests.jl")
end
@safetestset "ConservationChecker tests" begin
include("conservation_checker_tests.jl")
end
# include("CoupledSimulations/cplsolver.jl")
include("regridder_tests.jl")
include("conservation_checker_tests.jl")

0 comments on commit 7844e6e

Please sign in to comment.