Skip to content

Commit

Permalink
Comment failing MOI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Jun 28, 2018
1 parent 2dcbd5a commit 41cc64d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions test/MOIWrapper.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ const MOIT = MathOptInterface.Test
config = MOIT.TestConfig()
solver = GurobiOptimizer(OutputFlag=0)

MOIT.basic_constraint_tests(solver, config)
# TODO(@odow): see MathOptInterface Issue #404
# The basic constraint tests incorrectly add multiple constraints
# that are illegal, e.g., two SingleVariable-in-ZeroOne constraints
# for the same variable.
# MOIT.basic_constraint_tests(solver, config)

MOIT.unittest(solver, config, [
"solve_affine_interval", # Interval constraints not wrapped
Expand Down Expand Up @@ -76,7 +80,11 @@ end
MOIT.emptytest(solver)
end
@testset "orderedindicestest" begin
MOIT.orderedindicestest(solver)
# TODO(@odow): see MathOptInterface Issue #404
# The basic constraint tests incorrectly add multiple constraints
# that are illegal, e.g., two SingleVariable-in-ZeroOne constraints
# for the same variable.
# MOIT.orderedindicestest(solver)
end
@testset "canaddconstrainttest" begin
MOIT.canaddconstrainttest(solver, Float64, Complex{Float64})
Expand Down
File renamed without changes.

0 comments on commit 41cc64d

Please sign in to comment.