conductor(checkpoint): Checkpoint end of Phase 2 - Text Input & Control Undo/Redo

This commit is contained in:
2026-05-05 00:23:55 -04:00
parent 8513604539
commit a02849b9a3
4 changed files with 263 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import subprocess
import sys
import os
def verify_phase_2():
print("Verifying Phase 2: Text Input & Control Undo/Redo...")
# Run the simulation test
result = subprocess.run(
["uv", "run", "pytest", "tests/test_undo_redo_sim.py"],
capture_output=True,
text=True
)
if result.returncode == 0:
print("Phase 2 verification PASSED.")
else:
print("Phase 2 verification FAILED.")
print(result.stdout)
print(result.stderr)
sys.exit(1)
if __name__ == "__main__":
verify_phase_2()