Files
poimen-memory/tests/it_pgvector.rs
rock e6e39cf6fd
Build and Push / Test (push) Failing after 2m37s
Build and Push / Build and push image (push) Skipped
feat(core): implement full memory pipeline (#11)
2026-08-24 01:37:16 +00:00

15 lines
455 B
Rust

// Vector store tests now require PostgreSQL connection
// See tests with database fixtures or use integration tests
#[test]
#[ignore]
fn _vector_search_requires_database() {
// VectorStore is now backed by PostgreSQL with pgvector extension
// Tests require:
// - Running CNPG cluster
// - Database initialized with schema
// - Connection pooling setup
//
// Use integration tests with database containers for full testing
}