What problem does it solve? Testing AI workflow applications is difficult because mocking hides real integration bugs like database constraint violations, API timeouts, and race conditions. This Skill provides a structured 3-tier testing approach with a real-infrastructure policy for integration and end-to-end tests. ## Core Features & Use Cases - 3-Tier Test Strategy: Organizes tests into fast unit tests (mocking allowed), integration tests with real databases and APIs, and end-to-end tests over live HTTP endpoints. - Real Infrastructure Policy: Enforces no mocking of databases, HTTP calls, or LLM providers in Tiers 2-3, using Docker-based PostgreSQL, Redis, and MinIO test services. - Runtime Parity Testing: Runs the same test against both LocalRuntime and AsyncLocalRuntime using shared parametrized fixtures. - Use Case: When building a Kailash data pipeline, use this Skill to write a Tier 2 integration test that executes a workflow against a real PostgreSQL container and verifies records in the actual database. ## Quick Start Ask the AI to write a Tier 2 integration test for my Kailash workflow using a real PostgreSQL test database.