Skip to content

Commit

Permalink
Use SafeTestsets.
Browse files Browse the repository at this point in the history
  • Loading branch information
michakraus committed May 13, 2024
1 parent 9bbb27e commit 0724321
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ ToeplitzMatrices = "0.8"
julia = "1.8"

[extras]
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
test = ["SafeTestsets", "Test"]
1 change: 1 addition & 0 deletions test/bsplinekit_tests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using BSplineKit
using PoissonSolvers
using PoissonSolvers: evalsolution
using Test

nknot = 32
order = 5
Expand Down
1 change: 1 addition & 0 deletions test/fft_tests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using PoissonSolvers
using PoissonSolvers: nearest_index, nearest_indices
using Test

ngrid = 64

Expand Down
13 changes: 3 additions & 10 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
using PoissonSolvers
using Test
using SafeTestsets

@testset "PoissonSolvers.jl" begin
@testset "FFT Solvers" begin
include("fft_tests.jl")
end
@testset "BSplineKit Solvers" begin
include("bsplinekit_tests.jl")
end
end
@safetestset "FFT Solvers " begin include("fft_tests.jl") end
@safetestset "BSplineKit Solvers " begin include("bsplinekit_tests.jl") end

0 comments on commit 0724321

Please sign in to comment.