5 Tools to Enhance Your Django Development Workflow
1. Pytest-Django With pytest-django, you can take advantage of pytest's ecosystem in your Django project seamlessly. Besides the better API, I especially like the --nomigrations flag because it allows running tests without migrating the database. Perfect for TDD. Also, Django's assertions are still available: from pytest_...