!/usr/bin/env python3
"""Run integration test with proper PYTHONPATH."""
import subprocess
import sys
import os
env = {**os.environ, "PYTHONPATH": "/home/hoffmann_admin/.openclaw/workspace/services/icarus", "ICARUS_ENV": "staging"}
result = subprocess.run(
[sys.executable, "/home/hoffmann_admin/.openclaw/workspace/services/icarus/tests/test_recipe_toggle_integration.py"],
env=env,
cwd="/home/hoffmann_admin/.openclaw/workspace/services/icarus",
)
sys.exit(result.returncode)