""" Integration tests that require external services. These tests run in the Woodpecker CI integration pipeline (.woodpecker/integration.yml) which provides: - PostgreSQL database - Valkey/Redis cache To run locally: docker compose -f docker-compose.test.yml up -d postgres-test valkey-test export DATABASE_URL=postgresql://breakpilot:breakpilot_test@localhost:55432/breakpilot_test export VALKEY_URL=redis://localhost:56379 export SKIP_INTEGRATION_TESTS=false pytest tests/test_integration/ -v docker compose -f docker-compose.test.yml down -v """