From 8064dfd646498b44af74348f1698bc65e972678b Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Sun, 19 Apr 2026 10:29:51 -0400 Subject: [PATCH] rename followup: flip tests.py absolute path to /home/fox/git/lumbda MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests.py b/tests.py index eff79a4..0b04ce1 100644 --- a/tests.py +++ b/tests.py @@ -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