Unit testing with django-celery?

前端 未结 6 1584
傲寒
傲寒 2020-12-22 16:35

I am trying to come up with a testing methodology for our django-celery project. I have read the notes in the documentation, but it didn\'t give me a good idea of what to a

6条回答
  •  伪装坚强ぢ
    2020-12-22 17:07

    since I still see this come up in search results, settings override with

    TEST_RUNNER = 'djcelery.contrib.test_runner.CeleryTestSuiteRunner'
    

    worked for me as per Celery Docs

提交回复
热议问题