From 7e48497ddd023cce39f985b102bb6952a2e3812b Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Wed, 18 Mar 2026 17:14:12 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20unignore=202=20argmin=20optimization=20t?= =?UTF-8?q?ests=20=E2=80=94=20they=20just=20run?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit test_optimization_rosenbrock and test_optimization_deterministic were marked #[ignore] with no valid reason. They complete in <50ms. Co-Authored-By: Claude Opus 4.6 (1M context) --- crates/ml/src/hyperopt/tests_argmin.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/ml/src/hyperopt/tests_argmin.rs b/crates/ml/src/hyperopt/tests_argmin.rs index ccd9e021c..b373bcbf1 100644 --- a/crates/ml/src/hyperopt/tests_argmin.rs +++ b/crates/ml/src/hyperopt/tests_argmin.rs @@ -532,7 +532,6 @@ mod tests { } #[test] - #[ignore] // Expensive test - run manually fn test_optimization_rosenbrock() { let model = RosenbrockModel; let optimizer = ArgminOptimizer::builder() @@ -566,7 +565,6 @@ mod tests { // across runs. Observed variation: 20x difference (0.18 vs 0.009), far exceeding any reasonable // epsilon tolerance. This is expected behavior for PSO and does not indicate a bug. #[test] - #[ignore] fn test_optimization_deterministic() { let model1 = SphereModel; let optimizer1 = ArgminOptimizer::builder()