From eaa46a6485e1aeea6e5332e86d122f756c2531a8 Mon Sep 17 00:00:00 2001 From: Evans Mungai Date: Thu, 11 Jun 2026 20:40:43 +0100 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Evans Mungai --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ed5c2929c..ecb5cba2d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -244,9 +244,9 @@ Test binaries have no module info, so without this tag those code paths panic during package init. If you run tests outside the Makefile (IDE test runners, `go test` directly, -custom CI), pass `-tags helmtest`. The tag is omitted from release builds so -the `testing` package and its dependencies stay out of shipped binaries, and -branches gated on `testmode.IsTestMode()` are dead-code-eliminated by the compiler. +custom CI), pass `-tags helmtest`. Release builds omit this tag; production +code no longer imports `testing`, and branches gated on `testmode.IsTestMode()` +are dead-code-eliminated by the compiler. ## Pull Requests