I want to be able to use an existing test database to run my tests against and not have Django create and delete a database every time I want to run the tests. Is this possi
Who are using Django >= 1.8
python manage.py test --keepdb
--keepdb Preserves the test database between test runs. This has the advantage of skipping both the create and destroy actions which can greatly decrease the time to run tests, especially those in a large test suite. If the test database does not exist, it will be created on the first run and then preserved for each subsequent run. Any unapplied migrations will also be applied to the test database before running the test suite.