From a3050e4d0997433afc6d3a6c7700fc1280c26f9e Mon Sep 17 00:00:00 2001 From: samschott Date: Tue, 5 Apr 2022 20:30:48 +0200 Subject: [PATCH] [tests] disable throttling --- tests/linked/integration/conftest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/linked/integration/conftest.py b/tests/linked/integration/conftest.py index 72f50fe4e..e690a55bf 100644 --- a/tests/linked/integration/conftest.py +++ b/tests/linked/integration/conftest.py @@ -55,6 +55,9 @@ def m(): for entry in res.entries: m.client.remove(entry.path_lower) + # disable throttling for tests + m.sync.max_cpu_percent = 20 * 100 + # start syncing m.start_sync() wait_for_idle(m)