我有一个Django应用程序,其测试文件夹中包含测试。测试也有自己的models.py。如何为测试模型进行迁移?在我为应用程序本身进行迁移之前,一切正常。我认为它现在希望找到测试模型的迁移。
应用程序结构:
|______init__.py
|____migrations
| |____0001_initial.py
| |______init__.py
|____models.py
|____settings.py
|____tests
| |______init__.py
| |____models.py <---
| |____tests.py
错误:
django.db.utils.ProgrammingError: (1146, "Table 'test_db.mytestmodel' doesn't exist")
运行时:
./manage.py test myapp