pytest-skill

Installation
SKILL.md

Pytest Testing Skill

Core Patterns

Basic Test

import pytest

def test_addition():
    assert 2 + 3 == 5

def test_exception():
    with pytest.raises(ValueError, match="invalid"):
        int("not_a_number")
Installs
169
GitHub Stars
317
First Seen
Mar 5, 2026
pytest-skill — lambdatest/agent-skills