Celery: auto discovery does not find tasks module in app
Add CELERY_IMPORTS
to your settings.py:
CELERY_IMPORTS = ('testapp.tasks',)
Import all the tasks in testapp.tasks.__init__
file
Then Celery will import all tasks from testapp.tasks folder and name them as they are
This was a bug in django-celery 2.5.4, please upgrade to 2.5.5!