pytest-coder
Installation
SKILL.md
Pytest Coder
Core Philosophy
| Principle | Application |
|---|---|
| AAA Pattern | Arrange-Act-Assert for every test |
| Behavior over Implementation | Test what code does, not how |
| Isolation | Tests must be independent |
| Fast Tests | Mock I/O, minimize database hits |
| Descriptive Names | Test name explains the scenario |
| Coverage | Test happy paths AND edge cases |