New to Claude Skills? Learn how to install them →

Pytest skills

Free agent skills tagged pytest, ready to install into any SKILL.md-compatible agent.

DeepEval

confident-ai

Streamline evaluation workflows for AI applications.

AI & AgentsintermediatePython · Shell17.5k repo

Python Pro

jeffallan

Build type-safe, async-ready Python applications effortlessly.

Developer Toolsintermediate11k repo

Pytest Patterns

prowler-cloud

Streamline your Python testing with proven patterns.

Developer ToolsintermediateShell14.6k repo

Python Testing

affaan-m

Implement robust test strategies for Python applications.

Developer ToolsintermediateShell239.3k repo
D

Django TDD

affaan-m

Streamline testing for Django applications with TDD.

Developer ToolsintermediateShell239.3k repo

Python Testing Patterns

Implement comprehensive testing strategies with pytest, fixtures, mocking, and test-driven development. Use when writing Python tests, setting up test suites, or implementing testing best practices.

T

Temporal Python Testing

Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures.

T

Temporal Python Testing

Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures.

Writing Tests

Gates whether a new test should exist and forces it to be efficient, protecting CI from low-value test bloat. Use before adding or substantially changing any pytest, Jest, or Playwright test — whenever an agent or engineer is about to write tests for a new feature, bugfix, or PR. Front-loads the value bar (every test must catch a realistic regression no existing test already catches; test behavior through the public interface, not implementation details; collapse near-duplicates into parameterized cases) and the efficiency bar (deterministic, isolated, fast; pick the cheapest test level; Django TestCase over TransactionTestCase; no sleeps, no real network). Includes a "don't write it" decision tree. For fixing an existing flaky test use `/fixing-flaky-tests`; after this gate says a Playwright test is warranted, use `/playwright-test` for mechanics.