- #!/usr/bin/env bash
- set -euo pipefail
- # Live dependency tests for trader-mcp.
- export PYTHONPATH="${PYTHONPATH:-}:$(pwd)"
- if [ -f .venv/bin/activate ]; then
- # shellcheck disable=SC1091
- source .venv/bin/activate
- fi
- echo "Running server/integration pytest suite (trader-mcp)..."
- pytest -q tests/test_smoke.py tests/test_crypto_client.py tests/test_news_client.py
|