remove dead/stale/broken tests from long ago sitting in conductor.

This commit is contained in:
ed
2026-06-26 23:14:46 -04:00
parent 01f7bccc6f
commit 0d6c58916f
11 changed files with 0 additions and 514 deletions
-23
View File
@@ -1,23 +0,0 @@
import subprocess
import sys
import os
def verify_phase_4():
print("Verifying Phase 4: Contextual Auto-Switch...")
result = subprocess.run(
["uv", "run", "pytest", "tests/test_auto_switch_sim.py"],
capture_output=True,
text=True
)
if result.returncode == 0:
print("Phase 4 verification PASSED.")
else:
print("Phase 4 verification FAILED.")
print(result.stdout)
print(result.stderr)
sys.exit(1)
if __name__ == "__main__":
verify_phase_4()