Works with the AI tools you already use

    CClaude CodeCCursorCCodex CLIGGitHub CopilotGGemini CLIVVS CodeWWindsurf+15 more

    Pytest Test Architect

    by Tommi Sullivan

    2

    Generate professional pytest suites using behavior-driven matrices, AAA patterns, and resilient fixture architecture.

    Secure checkout via Stripe

    0 installsSecurity scanned

    See it in action

    You say

    Write a test suite for this PaymentProcessor class. It has a process_refund method that talks to Stripe and updates our local DB. Make sure it handles API failures.

    Your agent does

    I've generated tests/test_payments.py. It includes:

    • A stripe_client fixture using monkeypatch.
    • test_process_refund_insufficient_funds_raises_and_preserves_db_state.
    • A 4-category test matrix (Happy/Boundary/Error/State).

    Running tests... 5 passed, 0 failed.

    What you get

    Generate exhaustive test matrices for public Python APIs.Implement clean AAA patterns and composed pytest fixtures.Verify state preservation after error-path execution.Identify and report code smells that hinder testability.

    About this skill

    The problem

    Writing tests often results in brittle suites that break during refactors because they target implementation details instead of behavior. Developers frequently miss critical edge cases and fail to verify that the system state remains intact after an error is raised.

    What it does

    • Generates a comprehensive test matrix covering the happy path, boundary conditions, error paths, and side effects.
    • Builds production-grade pytest suites using the Arrange-Act-Assert (AAA) pattern and clean fixture architecture.
    • Implements robust mocking strategies limited to system boundaries like HTTP, clocks, and third-party SDKs.
    • Enforces state-preservation assertions to ensure failed operations do not corrupt data.
    • Delivers runnable test files along with a coverage report and a list of identified code smells.

    Frameworks & tools

    Python, pytest, freezegun, monkeypatch, tmp_path.

    Why this beats prompting it yourself

    Standard prompts usually produce shallow tests that only check the happy path. This skill enforces a disciplined architectural approach to testing, ensuring every public method is exercised against a four-category matrix and that fixtures are composed rather than duplicated.

    Use cases

    • Generating a complete test suite for a new Python module or class.
    • Increasing test coverage for legacy code by identifying unhandled boundary conditions.
    • Refactoring brittle mocks into stable, behavior-based assertions.
    • Auditing existing codebases for "testability" and identifying hidden I/O or state issues.

    Known limitations

    Requires the environment to have necessary dependencies installed to verify the tests via execution. Prefers fakes over MagicMock for complex interfaces, which may require manual implementation of the fake if not provided.

    How to install

    Drop the file into your AI Agent. Works with Claude, Cursor, ChatGPT, and 20+ more.

    Reviews

    No reviews yet

    Be one of the first to try it. Every listed skill passes our trust checks below.

    Security scanned

    Passed our 8-point scan before listing

    Fresh listing

    Recently published to Agensi

    30-day refund

    Not a fit? Get your money back

    Trust & safety

    Security scanned

    Verified clean 16 days ago

    Listed16 days ago

    Creator

    Frequently Asked Questions

    Popular in Testing & QA