gpt4 book ai didi

django 固定装置(来自 dumpdata)在测试时失败

转载 作者:行者123 更新时间:2023-12-04 05:41:12 26 4
gpt4 key购买 nike

我正在尝试从我的生产服务器转储数据以用作我的开发服务器上的测试,但是在指定在生产服务器上创建的夹具文件的开发服务器上运行“./manage.py test”时出现错误。

以下是我基于 google/stackoverflow 搜索所做的尝试:

# python manage.py dumpdata --indent=4 --natural
error when running tests: IntegrityError: (1062, "Duplicate entry 'cms-agencies' for key 'app_label'")

# python manage.py dumpdata --exclude contenttypes --indent=4
error when running tests: IntegrityError: (1452, 'Cannot add or update a child row: a foreign key constraint fails (`test_current`.`django_admin_log`, CONSTRAINT `content_type_id_refs_id_288599e6` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`))')

# python manage.py dumpdata --exclude contenttypes --natural --indent=4
error when running tests: IntegrityError: (1062, "Duplicate entry '14-add_agencies' for key 'content_type_id'")

# python manage.py dumpdata --exclude contenttypes --exclude auth --indent=4
error when running tests: IntegrityError: (1452, 'Cannot add or update a child row: a foreign key constraint fails (`test_current`.`django_admin_log`, CONSTRAINT `user_id_refs_id_c8665aa` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`))')

# python manage.py dumpdata --exclude contenttypes --exclude auth --natural --indent=4
error when running tests: IntegrityError: (1452, 'Cannot add or update a child row: a foreign key constraint fails (`test_current_abril`.`django_admin_log`, CONSTRAINT `user_id_refs_id_c8665aa` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`))')

我还尝试从 settings.py 中删除“'init_command': 'SET storage_engine=INNODB'”,但仍然出现 1062 错误。

我不明白这个问题。当我加载夹具时,django 不应该完全像在生产服务器上一样重新创建数据库吗?

最佳答案

我遇到了类似的问题,这些 args 对我有用:

python manage.py dumpdata --natural --exclude auth.permission --exclude contenttypes --indent 4

我也有很多关于 post_save 信号创建对象的问题。有一个修复方法: How do I prevent fixtures from conflicting with django post_save signal code?

关于django 固定装置(来自 dumpdata)在测试时失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10350559/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com