From de7f503df9b6c418cb21a7e52ee1f7d81bda4b7a Mon Sep 17 00:00:00 2001 From: Henry Park Date: Thu, 5 Mar 2026 20:16:09 -0800 Subject: [PATCH] fix(ci): anchor coverage/ gitignore rule to repo root (#591) coverage/ matched tests/fixtures/llm_traces/coverage/, causing release-plz to detect committed+ignored files and abort on every push to main. PR #561 has been stuck with only 1 changelog entry since v0.15.0. Anchor the rule to the repo root with /coverage/ so it only ignores the top-level coverage report directory generated by cargo llvm-cov, not nested fixture directories. [skip-regression-check] --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9867c596..d0de6ded 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,7 @@ target/ bench-results/ # Coverage reports (local runs, not committed) -coverage/ +/coverage/ # WASM build artifacts (loaded from disk, not bundled) *.wasm