Skip to content

Commit dc25802

Browse files
committed
Add test to runtests.jl
1 parent 6f56f73 commit dc25802

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

test/runtests.jl

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@ import IntervalSets as IS
99
include("generate_ITF1788.jl")
1010

1111
# interval tests
12-
for f readdir("interval_tests"; join = true)
12+
for f filter(isfile, readdir("interval_tests"; join = true))
13+
@testset "$f" begin
14+
include(f)
15+
end
16+
end
17+
18+
# interval tests using Supposition
19+
for f filter(isfile, readdir("interval_tests/supposition"; join = true))
1320
@testset "$f" begin
1421
include(f)
1522
end

0 commit comments

Comments
 (0)