diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-03-08 15:49:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-08 15:49:38 +0000 |
commit | d6e0be92fe01e695e06f52327736b1a2b4ab2265 (patch) | |
tree | fa0bf6e06ba2eb06532630b6e220c69539648278 /tests | |
parent | Merge pull request #4814 from matrix-org/erikj/soft_fail_impl (diff) | |
download | synapse-d6e0be92fe01e695e06f52327736b1a2b4ab2265.tar.xz |
Disable captcha registration by default in tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/utils.py b/tests/utils.py index e4c42f9fa8..9c8dc9dbce 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 |