TEMPORARY: prove a failing test blocks the image
build-and-publish / build (push) Failing after 43s

Will be reverted in the next commit. Verifying the gate rather than assuming it — the last
assumption of this kind was wrong for months.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
Claude-Session: https://claude.ai/code/session_01XXKjx7FNyRVAjU8dgB5KhN
This commit is contained in:
2026-07-23 12:18:54 -05:00
co-authored by Claude Opus 4.8
parent 04bc687ea1
commit 63a79eeb95
@@ -0,0 +1,14 @@
package com.itsthevine.web;
import static org.assertj.core.api.Assertions.assertThat;
import org.junit.jupiter.api.Test;
/** TEMPORARY: proves a failing test actually stops the image being published. Removed immediately. */
class GateProbeTest {
@Test
void deliberatelyFails() {
assertThat("the gate").isEqualTo("proved");
}
}