From fd865ccf8a3f31940d3272cfb461dd88b97bb0e1 Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Wed, 18 Mar 2026 17:20:23 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20unignore=202=20PostgreSQL=20model=20regi?= =?UTF-8?q?stry=20tests=20=E2=80=94=20docker=20running?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit test_model_registry_new and test_register_and_retrieve_model no longer ignored. foxhunt-postgres docker container available locally. Co-Authored-By: Claude Opus 4.6 (1M context) --- crates/ml/src/model_registry.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/ml/src/model_registry.rs b/crates/ml/src/model_registry.rs index d5b531b67..6b420e305 100644 --- a/crates/ml/src/model_registry.rs +++ b/crates/ml/src/model_registry.rs @@ -1006,7 +1006,6 @@ mod tests { use super::*; #[tokio::test] - #[ignore = "Requires PostgreSQL"] async fn test_model_registry_new() { let registry = ModelRegistry::new( "postgresql://foxhunt:foxhunt_dev_password@localhost:5432/foxhunt", @@ -1018,7 +1017,6 @@ mod tests { } #[tokio::test] - #[ignore = "Requires PostgreSQL"] async fn test_register_and_retrieve_model() { let registry = ModelRegistry::new( "postgresql://foxhunt:foxhunt_dev_password@localhost:5432/foxhunt",