diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-03-11 09:58:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 09:58:43 +0000 |
commit | b61ac9660a98d5a0e3f844c34059fcfefbf3cd3c (patch) | |
tree | 1a25d6daa0114cc1dbb14e050c435633c161a1c0 /tests | |
parent | fix incorrect encoding of filenames with spaces in (#2090) (diff) | |
parent | Add changelog (diff) | |
download | synapse-b61ac9660a98d5a0e3f844c34059fcfefbf3cd3c.tar.xz |
Merge pull request #4839 from matrix-org/anoa/no_captcha_tests
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 |