diff --git a/test/runtests.jl b/test/runtests.jl index c515e78d..5819db1a 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -7,13 +7,22 @@ if Base.get_bool_env("SPARSEARRAYS_AQUA_TEST", false) include("ambiguous.jl") end -for file in readlines(joinpath(@__DIR__, "testgroups")) - file == "" && continue # skip empty lines - include(file * ".jl") -end +include("allowscalar.jl") +include("fixed.jl") +include("higherorderfns.jl") +include("sparsematrix_constructors_indexing.jl") +include("sparsematrix_ops.jl") +include("sparsevector.jl") +include("issues.jl") if Base.USE_GPL_LIBS + include("cholmod.jl") + include("umfpack.jl") + include("spqr.jl") + include("linalg.jl") + include("linalg_solvers.jl") + nt = @static if isdefined(Threads, :maxthreadid) Threads.maxthreadid() else diff --git a/test/testgroups b/test/testgroups deleted file mode 100644 index a547762c..00000000 --- a/test/testgroups +++ /dev/null @@ -1,12 +0,0 @@ -allowscalar -cholmod -fixed -higherorderfns -issues -linalg -linalg_solvers -sparsematrix_constructors_indexing -sparsematrix_ops -sparsevector -spqr -umfpack