The question is in the title.
How can I run the unit tests with manage.py test from the command line without having to type yes if an old test database hasn't been destroyed(this happens when the tests are aborted).
thanks
The question is in the title.
How can I run the unit tests with manage.py test from the command line without having to type yes if an old test database hasn't been destroyed(this happens when the tests are aborted).
thanks
Try using the
--noinputoption (--no-inputis an alternative alias in Django 1.9+).