I\'m trying to write test cases for my django project but when I run \"$ ./manage.py test\" command its creating test database but its not creating any tables and I\'m gett
Do you have migrations? Run python manage.py makemigrations, the DB that's buildt during a test run uses them.
python manage.py makemigrations