From 10e3ebd427bb2159be024eda009200e67520fb11 Mon Sep 17 00:00:00 2001 From: odow Date: Wed, 4 Dec 2024 15:16:51 +1300 Subject: [PATCH] Fix test_nonlinear to have LOCALLY_SOLVED as the .optimal_status --- test/test_MOI_wrapper.jl | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/test/test_MOI_wrapper.jl b/test/test_MOI_wrapper.jl index 9ed723d4..cf6f973c 100644 --- a/test/test_MOI_wrapper.jl +++ b/test/test_MOI_wrapper.jl @@ -65,8 +65,7 @@ function test_runtests() # Xpress cannot handle nonconvex quadratic constraint "test_quadratic_nonconvex_", # Nonlinear tests because these return LOCALLY_SOLVED - "test_nonlinear_duals", - "test_nonlinear_expression_", + "test_nonlinear_", ], ) MOI.Test.runtests( @@ -77,10 +76,7 @@ function test_runtests() exclude = Any[MOI.ConstraintDual], optimal_status = MOI.LOCALLY_SOLVED, ); - include = [ - "test_nonlinear_duals", - "test_nonlinear_expression_", - ], + include = ["test_nonlinear_"], # This test is actually MOI.OPTIMAL. It's okay to ignore for now. exclude = ["test_nonlinear_expression_overrides_objective"], )