[Answer]-"CeleryTask matching query does not exist" when running Django tests

1👍

Always read documentation first. Reading a part of the one that comes to Celery did the trick; all what’s needed was to add a

TEST_RUNNER ='djcelery.contrib.test_runner.CeleryTestSuiteRunner'

to settings.py. That was the reason the test couldn’t get any of Celery task performing result.

Leave a comment