django-fast-test provides a Django Command fast_test.
python setup.py build
and then python setup.py install
, or using pip install django-fast-test
.'django_fast_storage'
to your INSTALLED_APPS
setting.python manage.py fast_test
.The fast_test command runs very fast, because it does not create TEST DB and does not run migrations. Directly, it uses the developing db or product db, and the result of operations onto db is really durably committed. So, CAUTIOUSLY use this command.
Downloads and bug tracking can be found at the main project website.