标签: python django django-models django-testing
我正在为我的django可重用软件包/应用程序创建测试,并且我的数据库没有动态创建。
我按照https://docs.djangoproject.com/en/1.9/topics/testing/advanced/#using-the-django-test-runner-to-test-reusable-applications
这可以正常工作,直到有一些模型定义,当它失败时
$('#form").on('submit', function () { }
文件夹中没有创建sqlite3文件。
我错过了什么?
答案 0 :(得分:0)
我发现了问题,它缺少迁移。
创建迁移后,模型测试运行正常。