Skip to content

Commit

Permalink
fix runtests.jl to check all test even if some tests fails
Browse files Browse the repository at this point in the history
  • Loading branch information
hyrodium committed Jan 3, 2021
1 parent 78eea8e commit 1a975de
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
using FastGaussQuadrature
using Test, LinearAlgebra, Random, SpecialFunctions


include("test_gausschebyshev.jl")
include("test_gausslegendre.jl")
include("test_gaussjacobi.jl")
include("test_gaussradau.jl")
include("test_gausslobatto.jl")
include("test_besselroots.jl")
include("test_gausslaguerre.jl")
include("test_gausshermite.jl")
@testset "FastGaussQuadrature.jl" begin
include("test_gausschebyshev.jl")
include("test_gausslegendre.jl")
include("test_gaussjacobi.jl")
include("test_gaussradau.jl")
include("test_gausslobatto.jl")
include("test_besselroots.jl")
include("test_gausslaguerre.jl")
include("test_gausshermite.jl")
end

0 comments on commit 1a975de

Please sign in to comment.