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",
]