Django test tables are not being created

后端 未结 4 1731
梦谈多话
梦谈多话 2021-01-13 15:33

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

4条回答
  •  清酒与你
    2021-01-13 15:48

    Do you have migrations? Run python manage.py makemigrations, the DB that's buildt during a test run uses them.

提交回复
热议问题