# Relay CLI Recipes

# Run all tests
test:
    uv run pytest -q

# Run a smoke test using fake transport
smoke-fake:
    uv run python scripts/smoke_fake.py

# Run a smoke test using the real remote host (optional)
# Requires a valid .relay.toml with a real host
smoke-remote:
    @echo "Running smoke test on real host..."
    uv run relayctl -- echo "hello from real host"
    uv run relayctl --shell -- 'echo "hello from real shell"'
