Skip to content

Commit 9b29780

Browse files
committed
Update
1 parent ac22796 commit 9b29780

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Bridges/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
using Test
88

9+
files_to_exclude = ["runtests.jl", "sdpa_models.jl", "utilities.jl"]
910
@testset "$(file)" for file in readdir(@__DIR__; join = true)
10-
if !endswith(file, ".jl") ||
11-
(endswith(file, "runtests.jl") || endswith(file, "sdpa_models.jl"))
11+
if !endswith(file, ".jl") || any(f -> endswith(file, f), files_to_exclude)
1212
continue
1313
end
1414
include(file)

0 commit comments

Comments
 (0)