diff --git a/radicale/tests/test_base.py b/radicale/tests/test_base.py index 8d06dbce..db6d8a2f 100644 --- a/radicale/tests/test_base.py +++ b/radicale/tests/test_base.py @@ -711,6 +711,8 @@ class TestMultiFileSystem(BaseRequests, BaseTest): super().setup() self.colpath = tempfile.mkdtemp() self.configuration.set("storage", "filesystem_folder", self.colpath) + # Disable syncing to disk for better performance + self.configuration.set("storage", "fsync", "False") self.application = Application(self.configuration, self.logger) def teardown(self): @@ -725,6 +727,8 @@ class TestCustomStorageSystem(BaseRequests, BaseTest): super().setup() self.colpath = tempfile.mkdtemp() self.configuration.set("storage", "filesystem_folder", self.colpath) + # Disable syncing to disk for better performance + self.configuration.set("storage", "fsync", "False") self.application = Application(self.configuration, self.logger) def teardown(self):