Some checks failed
check / check (push) Failing after 23s
Throwaway branch for dnswatcher#126. Determines whether the CI runner executes the current workflow or replays a stale job definition. Must never be merged; branch is deleted after the result is recorded.
11 lines
369 B
Go
11 lines
369 B
Go
package config_test
|
|
|
|
import "testing"
|
|
|
|
// TestCIProbe126 is a deliberately failing test used to determine whether CI
|
|
// executes the real gate for this repository. It lives only on the throwaway
|
|
// branch ci-probe-126 and must never be merged.
|
|
func TestCIProbe126(t *testing.T) {
|
|
t.Fatal("CI-PROBE-126: planted failure; if CI reports success this gate did not run")
|
|
}
|