python-pytest-ops

Installation
SKILL.md

Python pytest Patterns

Modern pytest patterns for effective testing.

Basic Test Structure

import pytest

def test_basic():
    """Simple assertion test."""
    assert 1 + 1 == 2

def test_with_description():
    """Descriptive name and docstring."""
    result = calculate_total([1, 2, 3])
    assert result == 6, "Sum should equal 6"
Installs
62
GitHub Stars
24
First Seen
Mar 8, 2026
python-pytest-ops — 0xdarkmatter/claude-mods