File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 31
31
32
32
@testset " SCS with warmstarts" begin
33
33
# 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
35
36
solve! (p, SCS. Optimizer (verbose= 0 , eps= 1e-6 ); warmstart = true )
36
37
end
37
38
end
38
39
39
40
@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
42
43
solve! (p, SCS. Optimizer (verbose= 0 , eps= 1e-6 ))
43
44
end
44
45
end
You can’t perform that action at this time.
0 commit comments