We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f56f73 commit dc25802Copy full SHA for dc25802
test/runtests.jl
@@ -9,7 +9,14 @@ import IntervalSets as IS
9
include("generate_ITF1788.jl")
10
11
# interval tests
12
-for f ∈ readdir("interval_tests"; join = true)
+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))
20
@testset "$f" begin
21
include(f)
22
end
0 commit comments