python-testing

Installation
SKILL.md

Python Testing Patterns

Framework: pytest

Project Setup

# pyproject.toml
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short --strict-markers"
markers = [
    "slow: marks tests as slow",
    "integration: marks integration tests",
]
Installs
2
GitHub Stars
1
First Seen
Feb 28, 2026
python-testing — peopleforrester/claude-dotfiles