Skip to content

Commit 82d52c7

Browse files
committed
Update
1 parent 72c16bc commit 82d52c7

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

test/MOI_tests.jl

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,11 @@ function test_runtests_cached()
4141
with_bridge_type=Float64,
4242
with_cache_type=Float64,
4343
)
44-
MOI.set(model, MOI.Silent(), true)
44+
# MOI.set(model, MOI.Silent(), true)
4545
MOI.Test.runtests(
4646
model,
4747
CONFIG;
48+
verbose = true,
4849
# TODO(odow): these doesn't converge. Can we fix upstream?
4950
exclude=[
5051
r"^test_nonlinear_expression_hs110$",
@@ -56,10 +57,11 @@ end
5657

5758
function test_runtests_bridged()
5859
model = MOI.instantiate(SCIP.Optimizer; with_bridge_type=Float64)
59-
MOI.set(model, MOI.Silent(), true)
60+
# MOI.set(model, MOI.Silent(), true)
6061
MOI.Test.runtests(
6162
model,
6263
CONFIG;
64+
verbose = true,
6365
# TODO(odow): these doesn't converge. Can we fix upstream?
6466
exclude=[
6567
r"^test_nonlinear_expression_hs110$",
@@ -71,8 +73,8 @@ end
7173

7274
function test_runtests_direct()
7375
model = MOI.instantiate(SCIP.Optimizer)
74-
MOI.set(model, MOI.Silent(), true)
75-
MOI.Test.runtests(model, CONFIG)
76+
# MOI.set(model, MOI.Silent(), true)
77+
MOI.Test.runtests(model, CONFIG; verbose = true)
7678
return
7779
end
7880

0 commit comments

Comments
 (0)