File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -45,9 +45,12 @@ function test_runtests_cached()
45
45
MOI. Test. runtests (
46
46
model,
47
47
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
+ ],
51
54
)
52
55
return
53
56
end
@@ -58,17 +61,20 @@ function test_runtests_bridged()
58
61
MOI. Test. runtests (
59
62
model,
60
63
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
+ ],
64
70
)
65
71
return
66
72
end
67
73
68
74
function test_runtests_direct ()
69
75
model = MOI. instantiate (SCIP. Optimizer)
70
76
# MOI.set(model, MOI.Silent(), true)
71
- MOI. Test. runtests (model, CONFIG; verbose = true )
77
+ MOI. Test. runtests (model, CONFIG; verbose= true )
72
78
return
73
79
end
74
80
You can’t perform that action at this time.
0 commit comments