From 80227d85793f634f6e01d01bce2527fc4c64be84 Mon Sep 17 00:00:00 2001 From: Fabian Date: Mon, 9 Mar 2026 14:08:19 +0100 Subject: [PATCH] Increase SCIP time limit in test to fix flaky CI (fixes #577) --- test/test_optimization.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_optimization.py b/test/test_optimization.py index 7d2d7d52..cdac8e61 100644 --- a/test/test_optimization.py +++ b/test/test_optimization.py @@ -530,7 +530,7 @@ def test_solver_time_limit_options( "cplex": {"timelimit": 1}, "xpress": {"maxtime": 1}, "highs": {"time_limit": 1}, - "scip": {"limits/time": 1}, + "scip": {"limits/time": 10}, # increase time limit to avoid race condition "mosek": {"MSK_DPAR_OPTIMIZER_MAX_TIME": 1}, "mindopt": {"MaxTime": 1}, "copt": {"TimeLimit": 1},