From b6013745e062677b13b86e6bdf2dac27b8c3d8fa Mon Sep 17 00:00:00 2001 From: sneak Date: Wed, 12 Aug 2026 10:23:40 +0000 Subject: [PATCH] Acceptance probe: deliberately broken test (lint-clean) --- internal/globals/ci_gate_probe_test.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 internal/globals/ci_gate_probe_test.go diff --git a/internal/globals/ci_gate_probe_test.go b/internal/globals/ci_gate_probe_test.go new file mode 100644 index 0000000..26f3890 --- /dev/null +++ b/internal/globals/ci_gate_probe_test.go @@ -0,0 +1,10 @@ +package globals_test + +import "testing" + +// Scratch-branch probe: a deliberately failing test used to verify that CI +// actually executes the test stage. Never merged. +func TestCIGateRunsTests(t *testing.T) { + t.Parallel() + t.Fatal("deliberate failure: the CI gate must report this commit red") +}