Skip to content

Commit

Permalink
Merge 5facd35 into 5d8f108
Browse files Browse the repository at this point in the history
  • Loading branch information
ericphanson committed Apr 13, 2020
2 parents 5d8f108 + 5facd35 commit 3a47b9d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/runtests.jl
Expand Up @@ -35,16 +35,15 @@ end
include("deprecations.jl")

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

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

0 comments on commit 3a47b9d

Please sign in to comment.