From 98e5bf8b61326badc0f0f113f5e4d156a1be9480 Mon Sep 17 00:00:00 2001 From: Steven Bal Date: Fri, 5 Jan 2024 16:47:35 +0100 Subject: [PATCH] :wrench: Use same auth backends for test as for staging/prod to add missing OIDC backends --- src/open_inwoner/conf/test.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/open_inwoner/conf/test.py b/src/open_inwoner/conf/test.py index 56a39ce15b..1da205d479 100644 --- a/src/open_inwoner/conf/test.py +++ b/src/open_inwoner/conf/test.py @@ -10,15 +10,5 @@ from .production import * # noqa isort:skip -# Allow logging in with both username+password and email+password -AUTHENTICATION_BACKENDS = [ - "open_inwoner.accounts.backends.CustomAxesBackend", - "open_inwoner.accounts.backends.UserModelEmailBackend", - "django.contrib.auth.backends.ModelBackend", - "digid_eherkenning.mock.backends.DigiDBackend", - "eherkenning.mock.backends.eHerkenningBackend", - "open_inwoner.accounts.backends.CustomOIDCBackend", -] - CSP_REPORTS_SAVE = True PLAYWRIGHT_MULTI_ONLY_DEFAULT = False