django-tdd

Installation
SKILL.md

Django TDD Patterns

Test-driven development workflow for Django 5.x with pytest.

Setup

# pytest.ini or pyproject.toml
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings.test"
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "--reuse-db --tb=short -q"
markers = [
    "slow: marks tests as slow",
    "integration: marks integration tests",
]
Installs
2
GitHub Stars
1
First Seen
Feb 28, 2026
django-tdd — peopleforrester/claude-dotfiles