Skip to content

Commit 5facd35

Browse files
authored
Update runtests.jl
1 parent eb1e665 commit 5facd35

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/runtests.jl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,15 @@ end
3535
include("deprecations.jl")
3636

3737
@testset "SCS with warmstarts" begin
38-
# We exclude `sdp_matrix_frac_atom` due to the bug https://github.com/JuliaOpt/SCS.jl/issues/153
39-
# Likewise, `sdp_sdp_constraints` hits a bug https://github.com/JuliaOpt/SCS.jl/issues/167
40-
run_tests(; exclude=[r"mip", r"sdp_matrix_frac_atom", r"sdp_sdp_constraints"]) do p
38+
# We exclude `sdp_sdp_constraints` since it seems to hit a bug https://github.com/JuliaOpt/SCS.jl/issues/167
39+
run_tests(; exclude=[r"mip", r"sdp_sdp_constraints"]) do p
4140
solve!(p, () -> SCS.Optimizer(verbose=0, eps=1e-6); warmstart = true)
4241
end
4342
end
4443

4544
@testset "SCS" begin
4645
# Exclusions same as for "SCS with warmstarts"
47-
run_tests(; exclude=[r"mip", r"sdp_matrix_frac_atom", r"sdp_sdp_constraints"]) do p
46+
run_tests(; exclude=[r"mip", r"sdp_sdp_constraints"]) do p
4847
solve!(p, () -> SCS.Optimizer(verbose=0, eps=1e-6))
4948
end
5049
end

0 commit comments

Comments
 (0)