Skip to content

Commit 6ad493b

Browse files
nickrobinson251dlfivefifty
authored andcommitted
Wrap all test files in a @testset (#85)
So if one file errors we still run all files.
1 parent 03ceae5 commit 6ad493b

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

test/runtests.jl

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
using BlockArrays, LinearAlgebra, Test
22

3-
include("test_blockindices.jl")
4-
include("test_blockarrays.jl")
5-
include("test_blockviews.jl")
6-
include("test_blockrange.jl")
7-
include("test_blockarrayinterface.jl")
8-
9-
include("test_blockbroadcast.jl")
3+
@testset "BlockArrays.jl" begin
4+
include("test_blockindices.jl")
5+
include("test_blockarrays.jl")
6+
include("test_blockviews.jl")
7+
include("test_blockrange.jl")
8+
include("test_blockarrayinterface.jl")
9+
include("test_blockbroadcast.jl")
10+
end

0 commit comments

Comments
 (0)