stages/user_create: add stage to create user after prompts

This commit is contained in:
Jens Langhammer
2020-05-10 18:04:23 +02:00
parent f6461b08d7
commit 8dc3c49a2f
11 changed files with 222 additions and 1 deletions

View File

@ -107,6 +107,7 @@ INSTALLED_APPS = [
"passbook.stages.email.apps.PassbookStageEmailConfig",
"passbook.stages.prompt.apps.PassbookStagPromptConfig",
"passbook.stages.identification.apps.PassbookStageIdentificationConfig",
"passbook.stages.user_create.apps.PassbookStageUserCreateConfig",
"passbook.stages.user_login.apps.PassbookStageUserLoginConfig",
"passbook.stages.otp.apps.PassbookStageOTPConfig",
"passbook.stages.password.apps.PassbookStagePasswordConfig",
@ -357,7 +358,7 @@ TEST_OUTPUT_VERBOSE = 2
TEST_OUTPUT_FILE_NAME = "unittest.xml"
if any("test" in arg for arg in sys.argv):
LOGGING = None
# LOGGING = None
TEST = True
CELERY_TASK_ALWAYS_EAGER = True