django-dev-test
Installation
SKILL.md
Django Testing Patterns
pytest-django testing with factory_boy for fixture management.
Core Principles
- pytest only - Never use Django's TestCase
- factory_boy - Use factories for all test data
- Mirror structure - Tests mirror app structure
- Isolation - Each test fully isolated
- Fast fixtures - Prefer
@pytest.fixtureover setUp
Installation
pip install pytest pytest-django factory-boy pytest-cov