Skip to content

Commit 4efe9b0

Browse files
committed
Exclude integer tests
1 parent 55b61ad commit 4efe9b0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

test/MOIWrapper.jl

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,13 @@ const optimizer = MOIU.CachingOptimizer(SDModelData{Float64}(), CSDP.Optimizer(p
1919
const config = MOIT.TestConfig(atol=1e-4, rtol=1e-4)
2020

2121
@testset "Unit" begin
22-
#FIXME The solution of solve_blank_obj is arbitrary
23-
MOIT.unittest(MOIB.SplitInterval{Float64}(optimizer), config, ["solve_blank_obj", "solve_qcp_edge_cases", "solve_qp_edge_cases"])
22+
MOIT.unittest(MOIB.SplitInterval{Float64}(optimizer), config,
23+
[# FIXME The solution of solve_blank_obj is arbitrary
24+
"solve_blank_obj",
25+
# *Quadratic functions are not supported
26+
"solve_qcp_edge_cases", "solve_qp_edge_cases",
27+
# Integer and ZeroOne sets are not supported
28+
"solve_integer_edge_cases", "solve_objbound_edge_cases"])
2429
end
2530
@testset "Continuous Linear" begin
2631
MOIT.contlineartest(MOIB.SplitInterval{Float64}(optimizer), config)

0 commit comments

Comments
 (0)