aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-25 22:54:47 -0400
committerCraig Jennings <c@cjennings.net>2026-06-25 22:54:47 -0400
commit75d3e2907bf7d68fbeb6850b71491d829b4bf882 (patch)
treec439e09983c04e6b24d8d108abc081837f6f65f5
parent7d27c08abe93f3d25aa16bffae1abb3b53d2719e (diff)
downloadarchsetup-75d3e2907bf7d68fbeb6850b71491d829b4bf882.tar.gz
archsetup-75d3e2907bf7d68fbeb6850b71491d829b4bf882.zip
docs(claude): codify VM test-iteration workflow
-rw-r--r--CLAUDE.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/CLAUDE.md b/CLAUDE.md
index a35c2e9..3264692 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -128,3 +128,8 @@ Full palette reference: `assets/color-themes/dupre/dupre-palette.org`
- Never assume which machine this is — always run `uname -n` to find the hostname (the `hostname` binary is absent, so `uname -n` is the source of truth; `uname -r` is the kernel release, not the host). The fleet is **ratio** (workstation) and **velox** (laptop), both Hyprland (Wayland). archsetup still supports dwm/X11, but no current machine uses it.
- Remote repository on cjennings.net
- .ai/ is gitignored; living project context is in .ai/notes.org
+
+## Codified Insights
+
+- **VM tests run committed code, not your working tree.** `scripts/testing/run-test.sh` provisions the VM from `git bundle create <file> HEAD` (it simulates `git clone`), so an uncommitted edit to `archsetup` or the pytest suite silently runs the old code. Commit (even a throwaway WIP commit) before `make test FS_PROFILE=...`, or the change isn't exercised. (`gotcha` — 2026-06-25)
+- **Iterate the pytest sweep against a kept VM, not a reinstall.** `make test-keep FS_PROFILE=...` leaves the VM up after the install and writes `testinfra_ssh_config` + `root_key` into `test-results/<timestamp>/`. Point pytest at that ssh-config to re-run only the Testinfra checks in ~30s instead of a ~70-minute full reinstall. Use it when iterating test assertions, not installer logic. (`pattern` — 2026-06-25)