diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-04-20 15:35:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-20 15:35:58 +0100 |
commit | d06a9ea5f76fc0e65fbec015c0fa33ffebe34ff1 (patch) | |
tree | 3ca41714d65b58d870f8be95ddadf7e3e5769116 /tests | |
parent | Merge pull request #3110 from NotAFile/py3-six-queue (diff) | |
parent | Add some more variables to the unittest config (diff) | |
download | synapse-d06a9ea5f76fc0e65fbec015c0fa33ffebe34ff1.tar.xz |
Merge pull request #3104 from NotAFile/py3-unittest-config
Add some more variables to the unittest config
Diffstat (limited to 'tests')
-rw-r--r-- | tests/utils.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/utils.py b/tests/utils.py index f15317d27b..0cd9f7eeee 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -59,6 +59,10 @@ def setup_test_homeserver(name="test", datastore=None, config=None, **kargs): config.email_enable_notifs = False config.block_non_admin_invites = False config.federation_domain_whitelist = None + config.federation_rc_reject_limit = 10 + config.federation_rc_sleep_limit = 10 + config.federation_rc_concurrent = 10 + config.filter_timeline_limit = 5000 config.user_directory_search_all_users = False # disable user directory updates, because they get done in the |