From c3d84a681180c0772f5a238ce5ba7d4af5317ba9 Mon Sep 17 00:00:00 2001 From: Sidney Richards Date: Mon, 21 Oct 2024 11:01:41 +0200 Subject: [PATCH] Use only the digid/eherkenning mocks in CI --- src/open_inwoner/conf/ci.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/open_inwoner/conf/ci.py b/src/open_inwoner/conf/ci.py index fd3a61312e..13ed42fbb5 100644 --- a/src/open_inwoner/conf/ci.py +++ b/src/open_inwoner/conf/ci.py @@ -28,17 +28,16 @@ } ) -# Allow logging in with both username+password and email+password + AUTHENTICATION_BACKENDS = [ "open_inwoner.accounts.backends.CustomAxesBackend", "open_inwoner.accounts.backends.UserModelEmailBackend", "open_inwoner.accounts.backends.Verify2FATokenBackend", + # Allow logging in with both username+password and email+password "django.contrib.auth.backends.ModelBackend", # mock login like dev.py "digid_eherkenning.mock.backends.DigiDBackend", "eherkenning.mock.backends.eHerkenningBackend", - "open_inwoner.accounts.backends.DigiDEHerkenningOIDCBackend", - "open_inwoner.accounts.backends.CustomOIDCBackend", ] ELASTIC_APM["DEBUG"] = True