diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fff67fa..c9a7ffc 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -24,13 +24,9 @@ repos: pass_filenames: false stages: [pre-commit] - - id: rust-test - name: Rust tests (manual - cargo test --workspace) - entry: bash -c "echo 'Run manually: cargo test --workspace' && exit 0" - language: system - types: [rust] - pass_filenames: false - stages: [manual] + # Note: Cargo tests disabled from pre-commit (too slow) + # Run manually: cargo test --workspace + # Or enable in CI/CD pipeline - id: cargo-deny name: Cargo deny (licenses & advisories) diff --git a/Cargo.lock b/Cargo.lock index 5ac9450..f278cb6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9112,6 +9112,7 @@ dependencies = [ "futures", "http", "jsonwebtoken 10.2.0", + "lazy_static", "mockall", "once_cell", "prometheus", @@ -9136,6 +9137,7 @@ dependencies = [ "tracing-subscriber", "uuid", "vapora-agents", + "vapora-knowledge-graph", "vapora-llm-router", "vapora-shared", "vapora-swarm",