diff --git a/tests/test_settings.py b/tests/test_settings.py index 950d692..a656877 100644 --- a/tests/test_settings.py +++ b/tests/test_settings.py @@ -7,6 +7,9 @@ # Celery configuration CELERY_ALWAYS_EAGER = True # Forces celery to run locally for testing +SITE_URL = "https://example.com" +CSRF_TRUSTED_ORIGINS = [SITE_URL] + INSTALLED_APPS += [ 'pinger', 'corptools'