Django:仅在测试期间找不到翻译

时间:2018-05-18 09:21:49

标签: django testing translation fixture

我正在我的django应用程序上进行功能测试(Selenium),我想要包含一些灯具。 首先,我尝试使用manage.py:

加载灯具
./manage.py dumpdata > db.json
./manage.py loaddata db.json

没有错误,我决定将这些数据用于我的测试:

class FrontTest(LiveServerTestCase):

    fixtures = ['db.json']

但是当我运行我的测试时:

django.core.serializers.base.DeserializationError: Problem installing fixture '/srv/app/db.json': EventBlock has no field named 'content_fr'

你有没有得到这个错误?

提前谢谢。

0 个答案:

没有答案