Skip to content

Commit 36f8178

Browse files
committed
Avoid SCS bug
1 parent ceeabb7 commit 36f8178

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/runtests.jl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,15 @@ end
3131

3232
@testset "SCS with warmstarts" begin
3333
# We exclude `sdp_matrix_frac_atom` due to the bug https://github.com/JuliaOpt/SCS.jl/issues/153
34-
run_tests(; exclude=[r"mip", r"sdp_matrix_frac_atom"]) do p
34+
# Likewise, `sdp_sdp_constraints` hits a bug https://github.com/JuliaOpt/SCS.jl/issues/167
35+
run_tests(; exclude=[r"mip", r"sdp_matrix_frac_atom", r"sdp_sdp_constraints"]) do p
3536
solve!(p, SCS.Optimizer(verbose=0, eps=1e-6); warmstart = true)
3637
end
3738
end
3839

3940
@testset "SCS" begin
40-
# We exclude `sdp_matrix_frac_atom` due to the bug https://github.com/JuliaOpt/SCS.jl/issues/153
41-
run_tests(; exclude=[r"mip", r"sdp_matrix_frac_atom"]) do p
41+
# Exclusions same as for "SCS with warmstarts"
42+
run_tests(; exclude=[r"mip", r"sdp_matrix_frac_atom", r"sdp_sdp_constraints"]) do p
4243
solve!(p, SCS.Optimizer(verbose=0, eps=1e-6))
4344
end
4445
end

0 commit comments

Comments
 (0)