Skip to content

Commit cc2f179

Browse files
committed
Update
1 parent 7f8b93f commit cc2f179

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

test/MOI_tests.jl

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,12 @@ function test_runtests_cached()
4545
MOI.Test.runtests(
4646
model,
4747
CONFIG;
48-
verbose = true,
49-
# TODO(odow): this doesn't converge. Can we fix this upstream?
50-
exclude=[r"^test_nonlinear_expression_hs110$"],
48+
verbose=true,
49+
# TODO(odow): these doesn't converge. Can we fix upstream?
50+
exclude=[
51+
r"^test_nonlinear_expression_hs110$",
52+
r"^test_nonlinear_expression_hs109$",
53+
],
5154
)
5255
return
5356
end
@@ -58,17 +61,20 @@ function test_runtests_bridged()
5861
MOI.Test.runtests(
5962
model,
6063
CONFIG;
61-
verbose = true,
62-
# TODO(odow): this doesn't converge. Can we fix this upstream?
63-
exclude=[r"^test_nonlinear_expression_hs110$"],
64+
verbose=true,
65+
# TODO(odow): these doesn't converge. Can we fix upstream?
66+
exclude=[
67+
r"^test_nonlinear_expression_hs110$",
68+
r"^test_nonlinear_expression_hs109$",
69+
],
6470
)
6571
return
6672
end
6773

6874
function test_runtests_direct()
6975
model = MOI.instantiate(SCIP.Optimizer)
7076
# MOI.set(model, MOI.Silent(), true)
71-
MOI.Test.runtests(model, CONFIG; verbose = true)
77+
MOI.Test.runtests(model, CONFIG; verbose=true)
7278
return
7379
end
7480

0 commit comments

Comments
 (0)