From 4718f56a288d31d97ff7a023eebc97f84c90b3ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesu=CC=81s=20Pe=CC=81rez?= Date: Sun, 11 Jan 2026 21:34:47 +0000 Subject: [PATCH] ci: Fix pre-commit config YAML syntax error - Remove problematic rust-test hook entry (YAML parsing error) - Tests should run via CI/CD pipeline, not pre-commit hooks - Keep focus on pre-commit hooks for code quality (fmt, clippy, markdown) Note: Run tests manually with 'cargo test --workspace' --- .pre-commit-config.yaml | 10 +++------- Cargo.lock | 2 ++ 2 files changed, 5 insertions(+), 7 deletions(-) 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",