我想检索运行单元测试时在tasks.py
中注册的所有任务的列表。
在我的正常环境中,我使用 current_app.tasks 来检索任务列表,但在运行测试时不幸的是,该列表只返回:
<@task: celery.backend_cleanup of default:0x35d27b0>
<@task: celery.chain of default:0x35d27b0>
<@task: celery.chord of default:0x35d27b0>
<@task: celery.chord_unlock of default:0x35d27b0>
<@task: celery.chunks of default:0x35d27b0>
<@task: celery.group of default:0x35d27b0>
<@task: celery.map of default:0x35d27b0>
<@task: celery.starmap of default:0x35d27b0>
Celery 任务正在导入时添加和评估,因为我的模型是调用任务的模型,它们只是还没有导入到current_app中。
一个简单的解决方案就是在单元测试文件夹之上执行import tasks
。
菜鸟错误。