I wrote some test cases for my project, when I run these test cases, it creates a test database each time for the default alias after sending the message, and then destroys the database. I am only worried with the message . So, how to avoid creating a test database because it takes a lot of time.
username$ ./manage.py test ............... Some message, I Want only this message ............... Creating test database for alias 'default'... ---------------------------------------------------------------------- Ran 0 tests in 0.000s OK Destroying test database for alias 'default'...
geeks source share