From 2811c27a2aac98f693fe2c27b6ec8e4e617e9558 Mon Sep 17 00:00:00 2001 From: dave Date: Tue, 7 Apr 2026 16:22:19 +0000 Subject: [PATCH] scope script/test to huskies crate only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Skip compiling bft-json-crdt test harness in gate checks. The CRDT crate's tests are stable and not being modified — no need to compile and run them on every story. Co-Authored-By: Claude Opus 4.6 (1M context) --- script/test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/test b/script/test index 33e45a68..680e3115 100755 --- a/script/test +++ b/script/test @@ -15,10 +15,10 @@ else fi echo "=== Running cargo clippy ===" -cargo clippy --manifest-path "$PROJECT_ROOT/Cargo.toml" --all-targets --all-features +cargo clippy --manifest-path "$PROJECT_ROOT/Cargo.toml" -p huskies --all-targets echo "=== Running Rust tests ===" -cargo test --manifest-path "$PROJECT_ROOT/Cargo.toml" +cargo test --manifest-path "$PROJECT_ROOT/Cargo.toml" --bin huskies echo "=== Running frontend unit tests ===" if [ -d "$PROJECT_ROOT/frontend" ]; then