From d6e0be92fe01e695e06f52327736b1a2b4ab2265 Mon Sep 17 00:00:00 2001 From: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Date: Fri, 8 Mar 2019 15:49:38 +0000 Subject: [PATCH 1/2] Disable captcha registration by default in tests --- tests/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/utils.py b/tests/utils.py index e4c42f9fa..9c8dc9dbc 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -115,6 +115,7 @@ def default_config(name): config.signing_key = [MockKey()] config.event_cache_size = 1 config.enable_registration = True + config.enable_registration_captcha = False config.macaroon_secret_key = "not even a little secret" config.expire_access_token = False config.server_name = name From 50924ee34ad7d99a6f617cdf413946e6cc85cb2b Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Fri, 8 Mar 2019 16:49:16 +0000 Subject: [PATCH 2/2] Add changelog --- changelog.d/4839.misc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/4839.misc diff --git a/changelog.d/4839.misc b/changelog.d/4839.misc new file mode 100644 index 000000000..7c6868051 --- /dev/null +++ b/changelog.d/4839.misc @@ -0,0 +1 @@ +Disable captcha registration by default in unit tests. \ No newline at end of file