Bläddra i källkod

Enable close_lock_file for tests

Unrud 9 år sedan
förälder
incheckning
7a01f905de
1 ändrade filer med 2 tillägg och 0 borttagningar
  1. 2 0
      radicale/tests/test_base.py

+ 2 - 0
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):