From 6cae90eceb180425fa648331872a590fe654e291 Mon Sep 17 00:00:00 2001 From: Mackenzie Halliday Date: Wed, 4 Dec 2024 07:40:39 -0800 Subject: [PATCH] Squash #2137 - Revert testing config for celery back --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index ec9a865e36..f4e0b2efdc 100644 --- a/app/config.py +++ b/app/config.py @@ -521,7 +521,7 @@ class Test(Development): 'read-db': os.getenv('SQLALCHEMY_DATABASE_URI_READ', 'postgresql://postgres@localhost/notification_api') } - CELERY_SETTINGS = {'task_always_eager': True, 'broker_url': 'memory://'} + CELERY_SETTINGS = {'broker_url': 'you-forgot-to-mock-celery-in-your-tests://'} ANTIVIRUS_ENABLED = True