From ea23d5c0cdec4b836a0c0df6b4c932867f59ec5e Mon Sep 17 00:00:00 2001 From: Chemaclass Date: Wed, 9 Sep 2026 16:06:05 +0200 Subject: [PATCH] chore: remove leaked test artifacts from repo root `.RAN_TEARDOWN` and `.setup` are empty files swept into 40560c26 by a `git add -A`, not something the project uses. Nothing reads them: `git log -S'RAN_TEARDOWN' --all` finds no commit whose content ever mentioned the name, and `.setup` is what a dev-time run of the #1324 timeout test wrote into the working directory back when its fixture expanded `"$TIMEOUT_MARKER.setup"` with the marker unset. The test now sets `TIMEOUT_MARKER` to a path under `bashunit::temp_dir`, so neither file is regenerated. They shipped in no artifact -- `package.json` lists only `bin/bashunit`, `LICENSE` and `README.md`, and `bpkg.json` only `bashunit` -- so this is repo hygiene, not a release fix. No `.gitignore` entry to go with it: a rule guarding a name nothing writes is the same false landmark in another file. Claude-Session: https://claude.ai/code/session_01EXYWTGLjf7qM8Ru3GakDRm --- .RAN_TEARDOWN | 0 .setup | 0 2 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 .RAN_TEARDOWN delete mode 100644 .setup diff --git a/.RAN_TEARDOWN b/.RAN_TEARDOWN deleted file mode 100644 index e69de29b..00000000 diff --git a/.setup b/.setup deleted file mode 100644 index e69de29b..00000000