From 7a01f905de108f692129c323f5bd2115bffa3490 Mon Sep 17 00:00:00 2001 From: Unrud Date: Thu, 11 Aug 2016 03:36:17 +0200 Subject: [PATCH] Enable close_lock_file for tests --- radicale/tests/test_base.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/radicale/tests/test_base.py b/radicale/tests/test_base.py index 2e39fc4..1ea8c1f 100644 --- a/radicale/tests/test_base.py +++ b/radicale/tests/test_base.py @@ -813,6 +813,8 @@ class BaseFileSystemTest(BaseTest): self.configuration.set("storage", "filesystem_folder", self.colpath) # Disable syncing to disk for better performance self.configuration.set("storage", "fsync", "False") + # Required on Windows, doesn't matter on Unix + self.configuration.set("storage", "close_lock_file", "True") self.application = Application(self.configuration, self.logger) def teardown(self):