扫码关注官方订阅号
AssertionError: Popped wrong app context. ( instead of )
错误代码如上
跑python manage.py shell python manage.py runserver 没问题,非常不解是哪里除了问题
认证高级PHP讲师
目前我也遇到同样问题
检查下是否把 tearDown 写成了 teardown
unittest 包中的tearDown() 方法在测试后运行。
def tearDown(self): db.session.remove() db.drop_all() self.app_context.pop()
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
目前我也遇到同样问题
检查下是否把 tearDown 写成了 teardown
unittest 包中的tearDown() 方法在测试后运行。