From 0a2e2faee55ba309273fbbe9b86a4dda053b872f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 29 Oct 2025 17:50:07 +0000 Subject: [PATCH 1/2] Initial plan From d2252082781a9414ebb77d729d0806f1ed5fc6a2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 29 Oct 2025 17:56:15 +0000 Subject: [PATCH 2/2] feat: [#86] add coverage check to pre-commit script Co-authored-by: josecelano <58816+josecelano@users.noreply.github.com> --- scripts/pre-commit.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/pre-commit.sh b/scripts/pre-commit.sh index d8e1b906..2f2812ee 100755 --- a/scripts/pre-commit.sh +++ b/scripts/pre-commit.sh @@ -21,6 +21,7 @@ declare -a STEPS=( "Running tests|All tests passed|||cargo test" "Testing cargo documentation|Documentation builds successfully|||cargo doc --no-deps --bins --examples --workspace --all-features" "Running comprehensive E2E tests|All E2E tests passed|(Filtering logs to WARNING level and above - this may take a few minutes)|RUST_LOG=warn|cargo run --bin e2e-tests-full" + "Running code coverage check|Coverage meets 85% threshold|(Informational only - does not block commits)||cargo cov-check" ) # ============================================================================