rename followup: flip tests.py absolute path to /home/fox/git/lumbda

Completes the on-disk side of the uncommonlisp -> lumbda rename:

  Filesystem: /home/fox/git/uncommonlisp -> /home/fox/git/lumbda
              with a back-compat symlink
              /home/fox/git/uncommonlisp -> lumbda
              so any stale path reference (agent memory files,
              shell history, other sessions) still resolves.
  tests.py:   cwd='/home/fox/git/uncommonlisp' -> '/home/fox/git/lumbda'
              (the only hardcoded absolute path we left behind in
              the previous rename commit, because the directory
              itself hadn't moved yet).

Remote URL (git@git.unturf.com:engineering/unturf/uncommonlisp.git)
still points at the old name and needs to be flipped AFTER fox
renames the gitlab project — probe confirms the new URL currently
404s, so the flip waits for the gitlab rename to land.

Verified 571 Python tests pass under the new cwd; symlink lets
`cd /home/fox/git/uncommonlisp` still work for anything cached.
This commit is contained in:
russell@unturf.com 2026-04-19 10:29:51 -04:00
parent f7352b51b0
commit 8064dfd646

View file

@ -1511,7 +1511,7 @@ class TestCommandLine(unittest.TestCase):
result = subprocess.run(
[sys.executable, 'lumbda.py'] + list(args),
capture_output=True, text=True, input=input_text,
cwd='/home/fox/git/uncommonlisp'
cwd='/home/fox/git/lumbda'
)
return result.stdout.strip(), result.stderr.strip(), result.returncode